Opened 14 years ago
Closed 14 years ago
#3880 closed bug (fixed)
BUGFIX for: "If IE and not an iframe... continually check to see if the document is ready"
Reported by: | capc-megadrom | Owned by: | john |
---|---|---|---|
Priority: | major | Milestone: | 1.3.1 |
Component: | event | Version: | 1.3 |
Keywords: | If IE and not an iframe | Cc: | |
Blocked by: | Blocking: |
Description
in function bindReady()... some
WRONG: If IE and not an iframe continually check to see if the document is ready if ( document.documentElement.doScroll && !window.frameElement ) (function(){
CORRECT: If IE and not an iframe continually check to see if the document is ready if ( document.documentElement.doScroll && typeof window.frameElement == undefined ) (function(){
Change History (2)
comment:1 Changed 14 years ago by
Owner: | set to john |
---|
comment:2 Changed 14 years ago by
Component: | core → event |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Fixed in SVN rev [6120].
Note: See
TracTickets for help on using
tickets.
Looks like the problem reported by #3898.