Disable touch event listeners in item container...
Some checks failed
Java CI / build (push) Has been cancelled
Some checks failed
Java CI / build (push) Has been cancelled
https://github.com/arianne/stendhal/issues/430
This commit is contained in:
parent
67b936d723
commit
fc13874825
1 changed files with 1 additions and 1 deletions
|
|
@ -57,6 +57,7 @@ export class ItemContainerImplementation {
|
|||
e.addEventListener("mouseup", (event: MouseEvent) => {
|
||||
this.onMouseUp(event)
|
||||
});
|
||||
/*
|
||||
e.addEventListener("touchstart", (event: TouchEvent) => {
|
||||
this.onTouchStart(event)
|
||||
});
|
||||
|
|
@ -66,7 +67,6 @@ export class ItemContainerImplementation {
|
|||
e.addEventListener("touchmove", (event: TouchEvent) => {
|
||||
this.onTouchMove(event)
|
||||
});
|
||||
/*
|
||||
e.addEventListener("touchcancel", (event: TouchEvent) => {
|
||||
this.onTouchCancel(event)
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue