Reverted the change that I made in #1320.

This commit is contained in:
John Resig 2007-09-02 22:34:18 +00:00
parent 346ceacce3
commit a5c319f922

View file

@ -982,7 +982,7 @@ function bindReady(){
// script does not exist if jQuery is loaded dynamically
if ( script )
script.onreadystatechange = function() {
if ( document.readyState != "complete" ) return;
if ( this.readyState != "complete" ) return;
jQuery.ready();
};