Skip to content

Commit

Permalink
Leaflet#2501, tab fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyGeonya committed Aug 5, 2014
1 parent f5cfddb commit a321406
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/map/handler/Map.ScrollWheelZoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ L.Map.ScrollWheelZoom = L.Handler.extend({
},

_onWheelScroll: function (e) {
var delta = L.DomEvent.getWheelDelta(e),
debounce = this._map.options.wheelDebounceTime;
var delta = L.DomEvent.getWheelDelta(e);
var debounce = this._map.options.wheelDebounceTime;

this._delta += delta;
this._lastMousePos = this._map.mouseEventToContainerPoint(e);
Expand Down

0 comments on commit a321406

Please sign in to comment.