[Mapbender-commits] r6013 - trunk/mapbender/http/javascripts
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Fri Apr 23 05:25:25 EDT 2010
Author: christoph
Date: 2010-04-23 05:25:24 -0400 (Fri, 23 Apr 2010)
New Revision: 6013
Modified:
trunk/mapbender/http/javascripts/map.php
Log:
avoid default behavior for images in IE
Modified: trunk/mapbender/http/javascripts/map.php
===================================================================
--- trunk/mapbender/http/javascripts/map.php 2010-04-23 09:17:50 UTC (rev 6012)
+++ trunk/mapbender/http/javascripts/map.php 2010-04-23 09:25:24 UTC (rev 6013)
@@ -288,6 +288,10 @@
$("img").bind("mousedown", function (e) {
e.preventDefault();
+ }).bind("mouseover", function (e) {
+ e.preventDefault();
+ }).bind("mousemove", function (e) {
+ e.preventDefault();
});
// creates the map objects (mapframe1, overview...)
Mapbender.events.initMaps.trigger();
More information about the Mapbender_commits
mailing list