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.

This commit is contained in:
Timmy Willison 2013-09-06 11:26:08 -04:00
parent bbbdd94725
commit 73e120116c

View 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();
});