#2915 closed bug (invalid)
[effects-core] in createWrapper, check if top and left are NaN with isNaN()
Reported by: | lrbabe | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | ui | Version: | 1.2.5 |
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 (2)
Changed 15 years ago by
comment:1 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
This appears to be a stray jQuery UI bug report.
Note: See
TracTickets for help on using
tickets.
patch to replace the test with isNaN()