From 76f38a5a36f1e37eaa123a11df1643ae8a9d3768 Mon Sep 17 00:00:00 2001 From: euzuro Date: Thu, 10 Aug 2006 06:02:14 +0000 Subject: [PATCH] fix for #136 git-svn-id: http://svn.openlayers.org/trunk/openlayers@1187 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Popup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/OpenLayers/Popup.js b/lib/OpenLayers/Popup.js index 1491109c56..2fcfaf2c0d 100644 --- a/lib/OpenLayers/Popup.js +++ b/lib/OpenLayers/Popup.js @@ -167,8 +167,8 @@ OpenLayers.Popup.prototype = { } if (this.div != null) { - this.div.style.width = this.size.w; - this.div.style.height = this.size.h; + this.div.style.width = this.size.w + "px"; + this.div.style.height = this.size.h + "px"; } },