Search and Top Navigation
#5650 closed bug (notabug)
Opened May 24, 2010 11:48AM UTC
Closed July 13, 2010 01:49PM UTC
ajax overflow bug in IE
Reported by: | daniol | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.accordion | Version: | 1.8.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
On some circustances, this causes an error on Internet Explorer (tested on IE8) with a content panel loaded with ajax
jquery.ui.accordion.js , Line 482
options.toShow[0].style[settings.prop] = (percentDone * showProps[settings.prop].value) + showProps[settings.prop].unit;
this should be envolved on try / catch block
try { options.toShow[0].style[settings.prop] = (percentDone * showProps[settings.prop].value) + showProps[settings.prop].unit; } catch(err) { }
Accordion doesn't come with built-in ajax support, so it's not clear what you're doing to run into this problem. Can you provide a page showing this problem?