Accordion: When simulating events, make sure we use DOM elements, not jQuery objects.

This commit is contained in:
Scott González 2011-04-04 14:22:54 -04:00
parent 9a1d8891b7
commit fc5291291b

View File

@ -275,7 +275,7 @@ $.widget( "ui.accordion", {
}
// trying to collapse, simulate a click on the currently active header
active = active || this.active;
active = active || this.active[ 0 ];
this._eventHandler({
target: active,