Opened 15 years ago
Closed 15 years ago
#2915 closed bug (fixed)
[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
Attachments (1)
Change History (3)
Changed 15 years ago by
comment:1 Changed 15 years ago by
Component: | ui.core → effects.core |
---|
Note: See
TracTickets for help on using
tickets.
patch to replace the test with isNaN()