mirror of
https://github.com/jquery/jquery.git
synced 2026-02-06 14:14:56 -05:00
Fix bug with the readyWait DOM ready addition.
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user