From 96c991061cb6ddb0708a5b0553bca6c73e378090 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 22 Jan 2009 13:58:52 -0700 Subject: [PATCH] Correctly clear drop status when doing dragging. --- imp/js/src/dragdrop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.11.0