Search and Top Navigation
#2915 closed bug (fixed)
Opened May 21, 2008 04:13PM UTC
Closed May 25, 2008 11:15PM UTC
[effects-core] in createWrapper, check if top and left are NaN with isNaN()
Reported by: | lrbabe | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.5 |
Component: | ui.effects.core | Version: | 1.5b4 |
Keywords: | effects, createWrapper, isNaN | Cc: | |
Blocked by: | Blocking: |
Description
Before setting the wrapper css, createWrapper check whether top and left are number with
if (top.constructor != Number)
which cause problems with IE browsers
We should use
if (isNaN(top))
instead