Skip to content

Commit

Permalink
Fix drops not over target area
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Oct 16, 2013
1 parent d8b6737 commit 26f5eb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imp/js/draghandler.js
Expand Up @@ -16,10 +16,10 @@ var DragHandler = {
handleDrop: function(e)
{
if (this.dropelt.hasClassName(this.hoverclass)) {
this.dropelt.hide();
this.droptarget.show();
this.dropelt.fire('DragHandler:drop', e);
}
this.dropelt.hide();
this.droptarget.show();
e.stop();
},

Expand Down

0 comments on commit 26f5eb6

Please sign in to comment.