aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-09-06 11:26:08 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-09-06 11:26:08 -0400
commit73e120116ce13b992d5229b3e10fcc19f9505a15 (patch)
tree3a8cbb0779b4f29e3dda6d37a4ac59a1aa9af8ec /src
parentbbbdd947256a3fcd788fb9d4f306046082a1ef1f (diff)
downloadjquery-73e120116ce13b992d5229b3e10fcc19f9505a15.tar.gz
jquery-73e120116ce13b992d5229b3e10fcc19f9505a15.zip
With all of the ready calls removed internally, ready was never kicked off. Add a call in the ready module to ensure ready is checked.
Diffstat (limited to 'src')
-rw-r--r--src/core/ready.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/ready.js b/src/core/ready.js
index ab9f0801e..2e33781c2 100644
--- a/src/core/ready.js
+++ b/src/core/ready.js
@@ -89,4 +89,7 @@ jQuery.ready.promise = function( obj ) {
return readyList.promise( obj );
};
+// Kick off the DOM ready check even if the user does not
+jQuery.ready.promise();
+
});