glow.ready callbacks get never called on ie
Reported by Ejder Yurdakul | January 2nd, 2012 @ 11:10 AM
Glow ready callbacks get never fired which causes
"docElm.clientTop is undefined" on ie7 because of a wrong condition
in core.debug.js line around 800.
The condition tries to detect if it is in a iframe by checking the
window.frameElement but the condition returns always true because
the typeof null equals to "Object".
the wrong condition:
if (typeof window.frameElement != "undefined") {
the correct condition:
if (window.frameElement != null) {
No comments found
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
A JavaScript Library