git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f60335
)
Delay the result of the readyState check to give scripts the opportunity to delay...
author
jeresig
<jeresig@gmail.com>
Thu, 23 Sep 2010 15:38:22 +0000
(11:38 -0400)
committer
jeresig
<jeresig@gmail.com>
Thu, 23 Sep 2010 15:38:22 +0000
(11:38 -0400)
src/core.js
patch
|
blob
|
history
diff --git
a/src/core.js
b/src/core.js
index
b747e5b
..
f6a07eb
100644
(file)
--- a/
src/core.js
+++ b/
src/core.js
@@
-429,7
+429,8
@@
jQuery.extend({
// Catch cases where $(document).ready() is called after the
// browser event has already occurred.
if ( document.readyState === "complete" ) {
- return jQuery.ready();
+ // Handle it asynchronously to allow scripts the opportunity to delay ready
+ return setTimeout( jQuery.ready, 13 );
}
// Mozilla, Opera and webkit nightlies currently support this event