From db2704c6ed9074306eb90b1e356f48b09a428fc4 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Wed, 17 May 2006 13:55:03 +0000 Subject: [PATCH] Typos from erik's commit were causing Util.js to fail when loading. git-svn-id: http://svn.openlayers.org/trunk/openlayers@92 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index 7b7cd98271..b42fc3b69e 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -138,8 +138,8 @@ OpenLayers.Size.prototype = { * @type bool */ equals:function(sz) { - return ((this.w == sz.w) && /this.h == sz.h)); - } + return ((this.w == sz.w) && (this.h == sz.h)); + }, /** @type String */ CLASS_NAME: "OpenLayers.Size"