From 407342b67c1e7a72f2ac1cfb176440bb138ffdfb Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Tue, 10 Mar 2020 13:25:46 +0100 Subject: [PATCH] Cosmetics --- client/src/components/MoveList.vue | 2 +- client/src/views/Game.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/MoveList.vue b/client/src/components/MoveList.vue index ded140d9..6f2eb317 100644 --- a/client/src/components/MoveList.vue +++ b/client/src/components/MoveList.vue @@ -80,7 +80,7 @@ export default { if ("ontouchstart" in window) { // Disable tooltips on smartphones: document.querySelectorAll("#aboveMoves .tooltip").forEach(elt => { - elt.classList.remove("tooltip") + elt.classList.remove("tooltip"); }); } // Take full width on small screens: diff --git a/client/src/views/Game.vue b/client/src/views/Game.vue index 009dbb47..b39e7d2c 100644 --- a/client/src/views/Game.vue +++ b/client/src/views/Game.vue @@ -222,7 +222,7 @@ export default { if ("ontouchstart" in window) { // Disable tooltips on smartphones: document.querySelectorAll("#aboveBoard .tooltip").forEach(elt => { - elt.classList.remove("tooltip") + elt.classList.remove("tooltip"); }); } }, -- 2.44.0