Permalink
Browse files
Fix bug with the readyWait DOM ready addition.
- Loading branch information...
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/core.js
|
@@ -373,7 +373,7 @@ jQuery.extend({ |
|
|
|
} |
|
|
|
|
|
|
|
// Make sure that the DOM is not already loaded |
|
|
|
if ( !jQuery.readyWait && !jQuery.isReady ) { |
|
|
|
if ( !jQuery.readyWait || (wait !== true && !jQuery.isReady) ) { |
|
|
|
// Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). |
|
|
|
if ( !document.body ) { |
|
|
|
return setTimeout( jQuery.ready, 13 ); |
|
|
0 comments on commit
1ac3713