Skip to content

Commit

Permalink
Merge pull request Leaflet#875 from ashes74/la/fix/touchevents
Browse files Browse the repository at this point in the history
Fix MSPointerDowm to MSPointerDown
  • Loading branch information
ddproxy authored Aug 10, 2018
2 parents 2d6509b + c6ff309 commit eb28a24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ext/TouchEvents.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ L.Map.TouchExtend = L.Handler.extend({
L.DomEvent.off(this._container, 'touchend', this._onTouchEnd, this);
L.DomEvent.off(this._container, 'touchmove', this._onTouchMove, this);
if (this._detectIE()) {
L.DomEvent.off(this._container, 'MSPointerDowm', this._onTouchStart, this);
L.DomEvent.off(this._container, 'MSPointerDown', this._onTouchStart, this);
L.DomEvent.off(this._container, 'MSPointerUp', this._onTouchEnd, this);
L.DomEvent.off(this._container, 'MSPointerMove', this._onTouchMove, this);
L.DomEvent.off(this._container, 'MSPointerCancel', this._onTouchCancel, this);
Expand Down

0 comments on commit eb28a24

Please sign in to comment.