From e8b545382ee8b13fa1a23a54ee0f61645377b32a Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Thu, 26 Jun 2008 12:43:45 +0000 Subject: [PATCH] sortable: update callback wass not called everytime (fixes #3028) --- ui/ui.sortable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js index d172a51dd..17ee71281 100644 --- a/ui/ui.sortable.js +++ b/ui/ui.sortable.js @@ -578,7 +578,7 @@ $.widget("ui.sortable", $.extend($.ui.mouse, { }, clear: function(e, noPropagation) { - if(this.domPosition[0] != this.currentItem.prev().not(".ui-sortable-helper")[0] || this.domPosition[1] != this.currentItem.parent()[0]) this.propagate("update", e, null, noPropagation); //Trigger update callback if the DOM position has changed + if(this.domPosition.prev != this.currentItem.prev().not(".ui-sortable-helper")[0] || this.domPosition.parent != this.currentItem.parent()[0]) this.propagate("update", e, null, noPropagation); //Trigger update callback if the DOM position has changed if(!contains(this.element[0], this.currentItem[0])) { //Node was moved out of the current element this.propagate("remove", e, null, noPropagation); for (var i = this.containers.length - 1; i >= 0; i--){ -- 2.39.5