Changeset 5909
- Timestamp:
- 01/27/08 09:26:28 (1 year ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Feature/Vector.js (modified) (3 diffs)
- trunk/openlayers/lib/OpenLayers/Renderer/SVG.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Renderer/VML.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Feature/Vector.js
r5625 r5909 280 280 * - hoverPointUnit: "%", 281 281 * - pointerEvents: "visiblePainted" 282 * - cursor: "" 282 283 * 283 284 * Other style properties that have no default values: … … 307 308 hoverPointRadius: 1, 308 309 hoverPointUnit: "%", 309 pointerEvents: "visiblePainted" 310 pointerEvents: "visiblePainted", 311 cursor: "" 310 312 }, 311 313 'select': { … … 342 344 hoverPointRadius: 1, 343 345 hoverPointUnit: "%", 344 pointerEvents: "visiblePainted" 346 pointerEvents: "visiblePainted", 347 cursor: "" 345 348 } 346 349 }; trunk/openlayers/lib/OpenLayers/Renderer/SVG.js
r5826 r5909 242 242 } 243 243 244 if (style.cursor ) {244 if (style.cursor != null) { 245 245 node.setAttributeNS(null, "cursor", style.cursor); 246 246 } trunk/openlayers/lib/OpenLayers/Renderer/VML.js
r5774 r5909 247 247 } 248 248 249 if (style.cursor ) {249 if (style.cursor != null) { 250 250 node.style.cursor = style.cursor; 251 251 }
