From 8e44d3a3982a536240ae576df0eafcc8a16f23c5 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Sun, 16 Feb 2020 19:07:49 +0100 Subject: [PATCH] Experimental fix attempt in Board.vue (bad behavior on smartphones) --- client/src/components/Board.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/Board.vue b/client/src/components/Board.vue index a1949d89..8b570952 100644 --- a/client/src/components/Board.vue +++ b/client/src/components/Board.vue @@ -253,7 +253,7 @@ export default { mousemove: this.mousemove, mouseup: this.mouseup, // touchstart: this.mousedown, -// touchmove: this.mousemove, + touchmove: this.mousemove, // touchend: this.mouseup, }, }, -- 2.44.0