From e665e10a531b6df23d6382668f85e1caa703e9fc Mon Sep 17 00:00:00 2001 From: euzuro Date: Thu, 25 May 2006 02:44:18 +0000 Subject: [PATCH] coding standards. git-svn-id: http://svn.openlayers.org/trunk/openlayers@351 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Popup.js b/lib/OpenLayers/Popup.js index 7810026966..c4ae7bfd1a 100644 --- a/lib/OpenLayers/Popup.js +++ b/lib/OpenLayers/Popup.js @@ -109,7 +109,7 @@ OpenLayers.Popup.prototype = { */ updatePosition: function() { if ((this.lonlat) && (this.map)) { - px = this.map.getLayerPxFromLonLat(this.lonlat); + var px = this.map.getLayerPxFromLonLat(this.lonlat); this.moveTo(px); } },