Ticket #5650 (closed bug: notabug)

Opened 3 years ago

Last modified 3 years ago

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:
Blocking: Blocked by:

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) { }

Change History

comment:1 Changed 3 years ago by scott.gonzalez

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?

comment:2 Changed 3 years ago by scott.gonzalez

  • Status changed from new to closed
  • Resolution set to invalid

Not enough information.

Note: See TracTickets for help on using tickets.