From 9a0174b057ae58735c3c5f595e420c7bb1db038c Mon Sep 17 00:00:00 2001 From: jeresig Date: Wed, 16 Dec 2009 23:09:55 -0500 Subject: [PATCH] Moved readyList check. --- src/core.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core.js b/src/core.js index 0d5588c2..8f81c520 100644 --- a/src/core.js +++ b/src/core.js @@ -224,12 +224,12 @@ jQuery.fn = jQuery.prototype = { jQuery.bindReady(); // If the DOM is already ready - if ( jQuery.isReady && !readyList ) { + if ( jQuery.isReady ) { // Execute the function immediately fn.call( document, jQuery ); // Otherwise, remember the function for later - } else { + } else if ( readyList ) { // Add the function to the wait list readyList.push( fn ); }