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
This commit is contained in:
euzuro
2006-09-13 08:27:24 +00:00
parent 9cf595df01
commit a210e16479

View File

@@ -526,6 +526,5 @@ OpenLayers.Util.safeStopPropagation = function(evt) {
if (evt.stopPropagation) {
evt.stopPropagation();
}
evt.returnValue = false;
evt.cancelBubble = true;
};