Skip to main content

Bug Tracker

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(){

Attachments (0)
Change History (2)

Changed January 17, 2009 04:25AM UTC by dmethvin comment:1

owner: → john

Looks like the problem reported by #3898.

Changed January 17, 2009 10:04PM UTC by john comment:2

component: coreevent
resolution: → fixed
status: newclosed

Fixed in SVN rev [6120].