Modify ↓
Ticket #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: | |
| Blocking: | Blocked by: |
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
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.


patch to replace the test with isNaN()