Bug Tracker

Ticket #1279 (closed bug: fixed)

Opened 1 year ago

Last modified 1 year ago

IE event cleanup problem

Reported by: dmethvin Assigned to: anonymous
Type: bug Priority: critical
Milestone: 1.1.3 Component: event
Version: 1.1.2 Keywords:
Cc: Needs: Review

Description

If an event handler is attached and later detached from an element, the jQuery.event.global[type][index] element will be undefined as it was delete-ed out of the array. The IE cleanup code needs to check for that and skip the call to remove the event. Otherwise it crashes on the element.$events reference in jQuery.event.remove since element is undefined.

This fixed the problem for me.

http://dev.jquery.com/browser/trunk/jquery/src/event/event.js#L994

< jQuery.event.remove(els[i-1], type);
> els[i-1] && jQuery.event.remove(els[i-1], type);

Sorry I don't have a simple test case, I found this while resurrecting work on the splitter.

Attachments

Change History

Changed 1 year ago by brandon

  • priority changed from major to critical

Marking this as critical so that we get it into the 1.1.3 release

Changed 1 year ago by brandon

  • status changed from new to closed
  • resolution set to fixed

Fixed in Rev [2136].

Note: See TracTickets for help on using tickets.