From b204a262a8a87f41aea79d3d13e6b907bedbcec4 Mon Sep 17 00:00:00 2001
From: Benjamin Auder <benjamin.auder@somewhere>
Date: Tue, 4 Dec 2018 17:32:36 +0100
Subject: [PATCH] (Temporarily) Disable touch handling for smartphones

---
 public/javascripts/components/game.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/public/javascripts/components/game.js b/public/javascripts/components/game.js
index 2a9a7018..04185a78 100644
--- a/public/javascripts/components/game.js
+++ b/public/javascripts/components/game.js
@@ -437,9 +437,9 @@ Vue.component('my-game', {
 					mousedown: this.mousedown,
 					mousemove: this.mousemove,
 					mouseup: this.mouseup,
-					touchstart: this.mousedown,
-					touchmove: this.mousemove,
-					touchend: this.mouseup,
+//					touchstart: this.mousedown, //TODO...
+//					touchmove: this.mousemove,
+//					touchend: this.mouseup,
 				},
 			},
 			elementArray
-- 
2.44.0