Changeset 7612
- Timestamp:
- 07/30/08 14:40:23 (4 months ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Control/DragPan.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/Navigation.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Handler/Drag.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Control/DragPan.js
r7608 r7612 31 31 /** 32 32 * Property: interval 33 * The number of milliseconds that should ellapse before34 * panning the map again. Set this to increase dragging performance.35 * Defaults to 25 milliseconds.33 * {Integer} The number of milliseconds that should ellapse before 34 * panning the map again. Set this to increase dragging performance. 35 * Defaults to 25 milliseconds. 36 36 */ 37 37 interval: 25, trunk/openlayers/lib/OpenLayers/Control/Navigation.js
r7608 r7612 33 33 /** 34 34 * APIProprety: dragPanOptions 35 * Options passed to the DragPan control.35 * {Object} Options passed to the DragPan control. 36 36 */ 37 37 dragPanOptions: null, trunk/openlayers/lib/OpenLayers/Handler/Drag.js
r7608 r7612 70 70 /** 71 71 * Property: interval 72 * In order to increase performance, an interval (in milliseconds) 73 * can be set to reduce the number of drag events called. If set, 74 * a new drag event will not be set until the interval has passed. 75 * Defaults to 0, meaning no interval. 72 * {Integer} In order to increase performance, an interval (in 73 * milliseconds) can be set to reduce the number of drag events 74 * called. If set, a new drag event will not be set until the 75 * interval has passed. 76 * Defaults to 0, meaning no interval. 76 77 */ 77 78 interval: 0, … … 79 80 /** 80 81 * Property: timeoutId 81 * The id of the timeout used for the mousedown interval.82 * This is "private", and should be left alone.82 * {String} The id of the timeout used for the mousedown interval. 83 * This is "private", and should be left alone. 83 84 */ 84 85 timeoutId: null,
