Side navigation
#2831 closed bug (invalid)
Opened May 09, 2008 09:41AM UTC
Closed July 11, 2010 06:47PM UTC
event.blind.js effect will trigger script error in IE7
Reported by: | cyberflohr | Owned by: | paul |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.4 |
Component: | ui | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I've tracked down the problem to the following lines of code within the effect.core.js script
The following lines within the createWrapper function will produce under certain circumstances NaN values for top & left.
var top = parseInt(el.css('top'), 10); if (top.constructor != Number) top = 'auto'; var left = parseInt(el.css('left'), 10); if (left.constructor != Number) left = 'auto';
fix:
var top = parseInt(el.css('top'), 10); if (isNaN(top)) top = 'auto'; var left = parseInt(el.css('left'), 10); if (isNaN(left)) left = 'auto';
Attachments (0)
Change History (1)
Changed July 11, 2010 06:47PM UTC by comment:1
resolution: | → invalid |
---|---|
status: | new → closed |
This should be filed in the UI bug tracker if still relevant.
http://dev.jqueryui.com