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
This commit is contained in:
crschmidt
2006-10-06 03:19:01 +00:00
parent 99ea5db027
commit 781fbf1822

View File

@@ -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);
}
}
},