Side navigation
#3880 closed bug (fixed)
Opened January 15, 2009 09:08PM UTC
Closed January 17, 2009 10:04PM UTC
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(){
Looks like the problem reported by #3898.