Skip to content

Commit

Permalink
fixes #10975: expose event to subscriber of /dnd/drop
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.dojotoolkit.org/src/dojo/trunk@21790 560b804f-0ae3-0310-86f3-f6aa0a117693
  • Loading branch information
liucougar committed Apr 9, 2010
1 parent 88606bf commit 4aa517c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dnd/Manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ dojo.declare("dojo.dnd.Manager", null, {
if(this.avatar){
if(this.target && this.canDropFlag){
var copy = Boolean(this.source.copyState(dojo.isCopyKey(e))),
params = [this.source, this.nodes, copy, this.target];
params = [this.source, this.nodes, copy, this.target, e];
dojo.publish("/dnd/drop/before", params);
dojo.publish("/dnd/drop", params);
}else{
Expand Down

0 comments on commit 4aa517c

Please sign in to comment.