From: Timmy Willison Date: Fri, 6 Sep 2013 15:26:08 +0000 (-0400) Subject: With all of the ready calls removed internally, ready was never kicked off. Add a... X-Git-Tag: 2.1.0-beta1~53 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=73e120116ce13b992d5229b3e10fcc19f9505a15;p=jquery.git 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. --- 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(); + });