]> source.dussan.org Git - jquery.git/commitdiff
With all of the ready calls removed internally, ready was never kicked off. Add a...
authorTimmy Willison <timmywillisn@gmail.com>
Fri, 6 Sep 2013 15:26:08 +0000 (11:26 -0400)
committerTimmy Willison <timmywillisn@gmail.com>
Fri, 6 Sep 2013 15:26:08 +0000 (11:26 -0400)
src/core/ready.js

index ab9f0801ecae6e7fa981170afc327e15123e46a1..2e33781c2bf60e2232442d2e30a6cde076316e5e 100644 (file)
@@ -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();
+
 });