aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/core.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.js b/src/core.js
index 0d5588c26..8f81c520e 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 );
}