From 781fbf182259a293859c5e53bc586f00812b8662 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Fri, 6 Oct 2006 03:19:01 +0000 Subject: [PATCH] Event.Stop caused us to lose the ability to click on our permalink. We like clicking on our permalink. bring that functionality back. git-svn-id: http://svn.openlayers.org/trunk/openlayers@1632 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Events.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/OpenLayers/Events.js b/lib/OpenLayers/Events.js index 0312bbdba3..ef5bf53950 100644 --- a/lib/OpenLayers/Events.js +++ b/lib/OpenLayers/Events.js @@ -289,8 +289,8 @@ OpenLayers.Events.prototype = { } } // don't fall through to other DOM elements - if (!this.fallThrough) { - OpenLayers.Event.stop(evt); + if (!this.fallThrough) { + OpenLayers.Util.safeStopPropagation(evt); } } },