Sortable: Fixed destroy method to call parent destroy method. Fixes #8094 - .sortable() after destroy does not work.

This commit is contained in:
Scott González 2012-02-02 11:43:22 -05:00
parent 28668948df
commit 988b803be3

View File

@ -65,6 +65,7 @@ $.widget("ui.sortable", $.ui.mouse, {
},
destroy: function() {
$.Widget.prototype.destroy.call( this );
this.element
.removeClass("ui-sortable ui-sortable-disabled");
this._mouseDestroy();