Experimental fix attempt in Board.vue (bad behavior on smartphones)
authorBenjamin Auder <benjamin.auder@somewhere>
Sun, 16 Feb 2020 18:06:56 +0000 (19:06 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sun, 16 Feb 2020 18:06:56 +0000 (19:06 +0100)
client/src/components/Board.vue

index 0f6bae3..a1949d8 100644 (file)
@@ -75,8 +75,6 @@ export default {
               'class': { 'choice-piece': true },
               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=[]; },
               },
             })
           ]
@@ -251,12 +249,12 @@ export default {
       {
         // NOTE: click = mousedown + mouseup
         on: {
-//          mousedown: this.mousedown,
-//          mousemove: this.mousemove,
-//          mouseup: this.mouseup,
-          touchstart: this.mousedown,
-          touchmove: this.mousemove,
-          touchend: this.mouseup,
+          mousedown: this.mousedown,
+          mousemove: this.mousemove,
+          mouseup: this.mouseup,
+//          touchstart: this.mousedown,
+//          touchmove: this.mousemove,
+//          touchend: this.mouseup,
         },
       },
       elementArray