From 1d06a8b9c4ba69bd56d9b08841fcd52b5ac409e9 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Sun, 16 Feb 2020 18:54:06 +0100 Subject: [PATCH] Experimental fix attempt in Board.vue (bad behavior on smartphones) --- client/src/components/Board.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/src/components/Board.vue b/client/src/components/Board.vue index 8d7f7bd1..0f6bae3f 100644 --- a/client/src/components/Board.vue +++ b/client/src/components/Board.vue @@ -251,12 +251,12 @@ export default { { // NOTE: click = mousedown + mouseup on: { - mousedown: this.mousedown, - mousemove: this.mousemove, - mouseup: this.mouseup, - //touchstart: this.mousedown, +// mousedown: this.mousedown, +// mousemove: this.mousemove, +// mouseup: this.mouseup, + touchstart: this.mousedown, touchmove: this.mousemove, - //touchend: this.mouseup, + touchend: this.mouseup, }, }, elementArray -- 2.44.0