Comparing version 0.6.3 to 0.6.4
{ | ||
"name": "leaflet", | ||
"version": "0.6.3", | ||
"version": "0.6.4", | ||
"description": "JavaScript library for mobile-friendly interactive maps", | ||
@@ -5,0 +5,0 @@ "devDependencies": { |
@@ -5,3 +5,3 @@ | ||
L.version = '0.6.3'; | ||
L.version = '0.6.4'; | ||
@@ -8,0 +8,0 @@ // define Leaflet for Node module pattern loaders, including Browserify |
@@ -68,3 +68,3 @@ /* | ||
top = body.scrollTop || docEl.scrollTop, | ||
left = body.scrollTop || docEl.scrollLeft; | ||
left = body.scrollLeft || docEl.scrollLeft; | ||
@@ -71,0 +71,0 @@ this._map._container.focus(); |
@@ -348,4 +348,4 @@ /* | ||
getMinZoom: function () { | ||
var z1 = this._layersMinZoom === undefined ? -Infinity : this._layersMinZoom, | ||
z2 = this._boundsMinZoom === undefined ? -Infinity : this._boundsMinZoom; | ||
var z1 = this._layersMinZoom === undefined ? 0 : this._layersMinZoom, | ||
z2 = this._boundsMinZoom === undefined ? 0 : this._boundsMinZoom; | ||
return this.options.minZoom === undefined ? Math.max(z1, z2) : this.options.minZoom; | ||
@@ -352,0 +352,0 @@ }, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9944555
326
22271