Changeset 14460
- Timestamp:
- 07/16/08 13:47:26 (4 months ago)
- Files:
-
- 1 modified
-
dojox/trunk/layout/dnd/PlottedDnd.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojox/trunk/layout/dnd/PlottedDnd.js
r14344 r14460 5 5 dojo.require("dojox.layout.dnd.Avatar"); 6 6 7 dojo.declare("dojox.layout.dnd.PlottedDnd", [dojo.dnd.Source], {7 dojo.declare("dojox.layout.dnd.PlottedDnd", [dojo.dnd.Source], { 8 8 // summary: 9 9 // dnd source handling plotted zone to show the dropping area … … 129 129 if (source == this && this._over && this.dropObject) 130 130 this.current = this.dropObject.c; 131 dojox.layout.dnd.PlottedDnd.superclass.onDndDrop.call(this, source, nodes, false, target);131 dojox.layout.dnd.PlottedDnd.superclass.onDndDrop.call(this, source, nodes, copy, target); 132 132 this._calculateCoords(true); 133 133 }