Skip to content

Commit

Permalink
Stop scroll propagation in L.Layers.Control in chrome>55 (Leaflet#5280)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanSanchez authored and perliedman committed Feb 1, 2017
1 parent 4921355 commit f4456b7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/control/Control.Layers.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,7 @@ export var Layers = Control.extend({
container.setAttribute('aria-haspopup', true);

DomEvent.disableClickPropagation(container);
if (!Browser.touch) {
DomEvent.disableScrollPropagation(container);
}
DomEvent.disableScrollPropagation(container);

var form = this._form = DomUtil.create('form', className + '-list');

Expand Down

0 comments on commit f4456b7

Please sign in to comment.