From a210e16479d0c206fa288f40c357483b1dad756b Mon Sep 17 00:00:00 2001 From: euzuro Date: Wed, 13 Sep 2006 08:27:24 +0000 Subject: [PATCH] final update to r1438 -- forgot to test on ie. turns out the 'safe' part means not setting that returnValue property. git-svn-id: http://svn.openlayers.org/trunk/openlayers@1440 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Util.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index 8a6dac4f5a..ec2dc87ed2 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -526,6 +526,5 @@ OpenLayers.Util.safeStopPropagation = function(evt) { if (evt.stopPropagation) { evt.stopPropagation(); } - evt.returnValue = false; evt.cancelBubble = true; };