Changeset 2508
- Timestamp:
- 03/08/07 07:45:46 (2 years ago)
- Files:
-
- sandbox/vector-2.4/examples/custom-control.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/vector-2.4/examples/custom-control.html
r2504 r2508 26 26 // this Handler.Box will intercept the shift-mousedown 27 27 // before Control.MouseDefault gets to see it 28 control.box = new OpenLayers.Handler.Box( control,29 {"done": control.notice},28 this.box = new OpenLayers.Handler.Box( control, 29 {"done": this.notice}, 30 30 {keyMask: OpenLayers.Handler.MOD_SHIFT}); 31 control.box.activate();31 this.box.activate(); 32 32 }, 33 33
