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
This commit is contained in:
crschmidt
2006-05-17 13:55:03 +00:00
parent 169dbb3755
commit db2704c6ed

View File

@@ -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"