Fix a lint error in Javascript, thanks to Safari. (Found by a user of the Boston Freemap.)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@850 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
crschmidt
2006-07-01 19:36:42 +00:00
parent 32acc4ad3a
commit 50c00d35d9

View File

@@ -50,7 +50,7 @@ OpenLayers.Control.Permalink.prototype =
lat = Math.round(center.lat*100000)/100000;
lon = Math.round(center.lon*100000)/100000;
this.element.href = this.base+"?lat="+lat+"&lon="+lon+"&zoom="+zoom;
},
}
});