From 351ebb0d520b31f7f4047796e8df79ca45f48eff Mon Sep 17 00:00:00 2001 From: Schuyler Erle Date: Tue, 20 Jun 2006 14:57:29 +0000 Subject: [PATCH] Fix minor typo introduced in r619. Thanx, euzuro\! git-svn-id: http://svn.openlayers.org/trunk/openlayers@620 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Map.js b/lib/OpenLayers/Map.js index f1464aa384..0206dbf0dc 100644 --- a/lib/OpenLayers/Map.js +++ b/lib/OpenLayers/Map.js @@ -89,7 +89,7 @@ OpenLayers.Map.prototype = { this.updateSize(); // make the entire maxExtent fix in zoom level 0 by default - if (this.maxResolution == null || this.resolution == "auto") { + if (this.maxResolution == null || this.maxResolution == "auto") { this.maxResolution = Math.max( this.maxExtent.getWidth() / this.size.w, this.maxExtent.getHeight() / this.size.h );