From 73e120116ce13b992d5229b3e10fcc19f9505a15 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Fri, 6 Sep 2013 11:26:08 -0400 Subject: [PATCH] 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. --- src/core/ready.js | 3 +++ 1 file changed, 3 insertions(+) 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(); + });