unpack Leaflet.GestureHandling-1.2.1.tar.gz

This commit is contained in:
Frédéric Péters 2021-10-03 12:18:41 +02:00
parent 841ee285dd
commit ebe5f44850
3 changed files with 4 additions and 4 deletions

View File

@ -355,7 +355,7 @@
this._map._container.addEventListener("touchcancel", this._handleTouch);
this._map._container.addEventListener("click", this._handleTouch);
L.DomEvent.on(this._map._container, "mousewheel", this._handleScroll, this);
L.DomEvent.on(this._map._container, "wheel", this._handleScroll, this);
L.DomEvent.on(this._map, "mouseover", this._handleMouseOver, this);
L.DomEvent.on(this._map, "mouseout", this._handleMouseOut, this);
@ -374,7 +374,7 @@
this._map._container.removeEventListener("touchcancel", this._handleTouch);
this._map._container.removeEventListener("click", this._handleTouch);
L.DomEvent.off(this._map._container, "mousewheel", this._handleScroll, this);
L.DomEvent.off(this._map._container, "wheel", this._handleScroll, this);
L.DomEvent.off(this._map, "mouseover", this._handleMouseOver, this);
L.DomEvent.off(this._map, "mouseout", this._handleMouseOut, this);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long