From 24c9dfed41f41d246f34931bac40d14cfef34733 Mon Sep 17 00:00:00 2001 From: Daniel Chesters Date: Mon, 14 Feb 2011 21:53:07 +0100 Subject: [PATCH] if focuschatballoons is at false, disableAutoPan should be at true --- web/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/map.js b/web/map.js index 0421aec2..cfd08f8e 100644 --- a/web/map.js +++ b/web/map.js @@ -419,7 +419,7 @@ DynMap.prototype = { popup.popupTime = now.getTime(); if (!popup.infoWindow) { popup.infoWindow = new google.maps.InfoWindow({ - disableAutoPan: me.options.focuschatballoons || false, + disableAutoPan: !me.options.focuschatballoons || false, content: htmlMessage }); } else {