Changeset 3042
- Timestamp:
- 04/10/07 06:35:16 (2 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Control/MouseDefaults.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/MouseToolbar.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Control/PanZoomBar.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Handler/Box.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/MouseDefaults.js
r2938 r3042 182 182 document.onselectstart=null; 183 183 this.mouseDragStart = null; 184 this.map.div.style.cursor = " default";184 this.map.div.style.cursor = ""; 185 185 }, 186 186 trunk/openlayers/lib/OpenLayers/Control/MouseToolbar.js
r2939 r3042 240 240 break; 241 241 default: 242 this.map.div.style.cursor = " default";242 this.map.div.style.cursor = ""; 243 243 break; 244 244 } trunk/openlayers/lib/OpenLayers/Control/PanZoomBar.js
r2965 r3042 229 229 if (!OpenLayers.Event.isLeftClick(evt)) return; 230 230 if (this.zoomStart) { 231 this.div.style.cursor=" default";231 this.div.style.cursor=""; 232 232 this.map.events.unregister("mouseup", this, this.passEventToSlider); 233 233 this.map.events.unregister("mousemove", this, this.passEventToSlider); trunk/openlayers/lib/OpenLayers/Handler/Box.js
r2955 r3042 100 100 101 101 // TBD: use CSS classes instead 102 this.map.div.style.cursor = " default";102 this.map.div.style.cursor = ""; 103 103 104 104 this.callback("done", [result]); trunk/openlayers/lib/OpenLayers/Handler/Drag.js
r3039 r3042 96 96 this.dragging = false; 97 97 // TBD replace with CSS classes 98 this.map.div.style.cursor = " default";98 this.map.div.style.cursor = ""; 99 99 this.callback("up", [evt.xy]); 100 100 document.onselectstart = this.oldOnselectstart; … … 114 114 this.dragging = false; 115 115 // TBD replace with CSS classes 116 this.map.div.style.cursor = " default";116 this.map.div.style.cursor = ""; 117 117 this.callback("out", []); 118 118 if(document.onselectstart) {
