From: Michael M Slusarz Date: Thu, 22 Jan 2009 20:58:52 +0000 (-0700) Subject: Correctly clear drop status when doing dragging. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=96c991061cb6ddb0708a5b0553bca6c73e378090;p=horde.git Correctly clear drop status when doing dragging. --- diff --git a/imp/js/src/dragdrop.js b/imp/js/src/dragdrop.js index fc5bbd802..5b1430384 100644 --- a/imp/js/src/dragdrop.js +++ b/imp/js/src/dragdrop.js @@ -113,7 +113,7 @@ var DragDrop = { deactivate: function() { if (this.drag) { - this.drag = null; + this.drag = DragDrop.Drops.drop = null; document.stopObserving('mousemove', this.mousemoveE); document.stopObserving('mouseup', this.mouseupE); }