Experimental revert in Board.vue (bad behavior on smartphones)
authorBenjamin Auder <benjamin.auder@somewhere>
Sun, 16 Feb 2020 17:50:22 +0000 (18:50 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sun, 16 Feb 2020 17:50:22 +0000 (18:50 +0100)
client/src/components/Board.vue

index 377013a..818b2a3 100644 (file)
@@ -76,7 +76,7 @@ export default {
               on: {
                 "click": e => { this.play(m); this.choices=[]; },
                 // NOTE: add 'touchstart' event to fix a problem on smartphones
-                "touchstart": e => { this.play(m); this.choices=[]; },
+                //"touchstart": e => { this.play(m); this.choices=[]; },
               },
             })
           ]
@@ -254,9 +254,9 @@ export default {
           mousedown: this.mousedown,
           mousemove: this.mousemove,
           mouseup: this.mouseup,
-          touchstart: this.mousedown,
-          touchmove: this.mousemove,
-          touchend: this.mouseup,
+          //touchstart: this.mousedown,
+          //touchmove: this.mousemove,
+          //touchend: this.mouseup,
         },
       },
       elementArray