Add missing semicolon. Non functional change.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@11185 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -1038,7 +1038,7 @@ OpenLayers.Util.getParameters = function(url) {
|
||||
}
|
||||
|
||||
// follow OGC convention of comma delimited values
|
||||
value = value.split(",")
|
||||
value = value.split(",");
|
||||
|
||||
//if there's only one value, do not return as array
|
||||
if (value.length == 1) {
|
||||
@@ -1839,7 +1839,7 @@ OpenLayers.Util.getFormattedLonLat = function(coordinate, axis, dmsOption) {
|
||||
if (!dmsOption) {
|
||||
dmsOption = 'dms'; //default to show degree, minutes, seconds
|
||||
}
|
||||
var abscoordinate = Math.abs(coordinate)
|
||||
var abscoordinate = Math.abs(coordinate);
|
||||
var coordinatedegrees = Math.floor(abscoordinate);
|
||||
|
||||
var coordinateminutes = (abscoordinate - coordinatedegrees)/(1/60);
|
||||
|
||||
Reference in New Issue
Block a user