Changeset 13098
- Timestamp:
- 03/15/08 16:36:00 (10 months ago)
- Files:
-
- 1 modified
-
dojo/trunk/dnd/move.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojo/trunk/dnd/move.js
r13002 r13098 115 115 // within: Boolean: if true, constraints the whole dragged object withtin the rectangle, 116 116 // otherwise the constraint is applied to the left-top corner 117 dojo.deprecated("dojo.dnd.move.constrainedMover, use dojo.dnd.move.constrainedMoveable instead"); 117 118 var mover = function(node, e, notifier){ 118 119 dojo.dnd.Mover.call(this, node, e, notifier); … … 146 147 // within: Boolean: if true, constraints the whole dragged object withtin the rectangle, 147 148 // otherwise the constraint is applied to the left-top corner 149 dojo.deprecated("dojo.dnd.move.boxConstrainedMover, use dojo.dnd.move.boxConstrainedMoveable instead"); 148 150 return dojo.dnd.move.constrainedMover(function(){ return box; }, within); // Object 149 151 }; … … 155 157 // within: Boolean: if true, constraints the whole dragged object withtin the rectangle, 156 158 // otherwise the constraint is applied to the left-top corner 159 dojo.deprecated("dojo.dnd.move.parentConstrainedMover, use dojo.dnd.move.parentConstrainedMoveable instead"); 157 160 var fun = function(){ 158 161 var n = this.node.parentNode,