Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

leaflet

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leaflet - npm Package Compare versions

Comparing version 0.6.3 to 0.6.4

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc