From d3294e73fd4ec3fe50ed011ea9998e4581a1b2b2 Mon Sep 17 00:00:00 2001 From: euzuro Date: Thu, 28 Feb 2008 00:02:48 +0000 Subject: [PATCH] proper tabbing is the artichoke of a good garden. git-svn-id: http://svn.openlayers.org/trunk/openlayers@6392 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Popup.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/OpenLayers/Popup.js b/lib/OpenLayers/Popup.js index e3b2927605..20e1b390af 100644 --- a/lib/OpenLayers/Popup.js +++ b/lib/OpenLayers/Popup.js @@ -230,10 +230,10 @@ OpenLayers.Popup = OpenLayers.Class({ */ updatePosition: function() { if ((this.lonlat) && (this.map)) { - var px = this.map.getLayerPxFromLonLat(this.lonlat); - if (px) { - this.moveTo(px); - } + var px = this.map.getLayerPxFromLonLat(this.lonlat); + if (px) { + this.moveTo(px); + } } },