From 495b9f01340ce18b2feef4b4a24d996038cbb4c8 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Fri, 9 Jun 2006 00:59:39 +0000 Subject: [PATCH] Remove 'inherit' cursor, which does not work as expeted in IE. git-svn-id: http://svn.openlayers.org/trunk/openlayers@560 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Util.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index 1f5420b657..cbe9ea18e8 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -678,7 +678,6 @@ OpenLayers.Util.createDiv = function(id, px, sz, imgURL, position, //set specific properties dom.style.padding = "0"; dom.style.margin = "0"; - dom.style.cursor = "inherit"; if (imgURL) { dom.style.backgroundImage = 'url(' + imgURL + ')'; } @@ -713,7 +712,6 @@ OpenLayers.Util.createImage = function(id, px, sz, imgURL, position, border) { //set special properties image.style.alt = id; - image.style.cursor = "inherit"; image.galleryImg = "no"; if (imgURL) { image.src = imgURL;