From 988b803be3085111cb8d741b99ab09151dc7f1b5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Thu, 2 Feb 2012 11:43:22 -0500 Subject: [PATCH] Sortable: Fixed destroy method to call parent destroy method. Fixes #8094 - .sortable() after destroy does not work. --- ui/jquery.ui.sortable.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/jquery.ui.sortable.js b/ui/jquery.ui.sortable.js index 54adacebc..5bcc1ba5c 100644 --- a/ui/jquery.ui.sortable.js +++ b/ui/jquery.ui.sortable.js @@ -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(); -- 2.39.5