Correctly clear drop status when doing dragging.
authorMichael M Slusarz <slusarz@curecanti.org>
Thu, 22 Jan 2009 20:58:52 +0000 (13:58 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Thu, 22 Jan 2009 20:59:22 +0000 (13:59 -0700)
imp/js/src/dragdrop.js

index fc5bbd8..5b14303 100644 (file)
@@ -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);
             }