From cd01814a85a765759f2e1205355514c75bcdfa2d Mon Sep 17 00:00:00 2001 From: Eduardo Lundgren Date: Tue, 28 Oct 2008 06:41:11 +0000 Subject: [PATCH] Sortable - Prevent mouseCapture while help is reverting --- ui/ui.sortable.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ui/ui.sortable.js b/ui/ui.sortable.js index 52e8b6578..d1871c940 100644 --- a/ui/ui.sortable.js +++ b/ui/ui.sortable.js @@ -384,6 +384,10 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { _mouseCapture: function(e, overrideHandle) { + if (this.reverting) { + return false; + } + if(this.options.disabled || this.options.type == 'static') return false; //We have to refresh the items data once first @@ -697,6 +701,8 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { var self = this; var cur = self.placeholder.offset(); + self.reverting = true; + $(this.helper).animate({ left: cur.left - this.offset.parent.left - self.margins.left + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollLeft), top: cur.top - this.offset.parent.top - self.margins.top + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollTop) @@ -713,6 +719,8 @@ $.widget("ui.sortable", $.extend({}, $.ui.mouse, { _clear: function(e, noPropagation) { + this.reverting = false; + //We first have to update the dom position of the actual currentItem if(!this._noFinalSort) this.placeholder.before(this.currentItem); this._noFinalSort = null; -- 2.39.5