Handle touchcancel, because touchend doesn't work on android.

This commit is contained in:
kovacsv 2021-12-12 21:24:42 +01:00
parent bcf0c588fe
commit ce57dff028

View File

@ -246,6 +246,7 @@ OV.Navigation = class
this.canvas.addEventListener ('wheel', this.OnMouseWheel.bind (this));
this.canvas.addEventListener ('touchstart', this.OnTouchStart.bind (this));
this.canvas.addEventListener ('touchmove', this.OnTouchMove.bind (this));
this.canvas.addEventListener ('touchcancel', this.OnTouchEnd.bind (this));
this.canvas.addEventListener ('touchend', this.OnTouchEnd.bind (this));
this.canvas.addEventListener ('contextmenu', this.OnContextMenu.bind (this));
}