Fix typo element.id --> element
authorBenjamin Auder <benjamin.auder@somewhere>
Sun, 14 Nov 2021 23:02:24 +0000 (00:02 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Sun, 14 Nov 2021 23:02:24 +0000 (00:02 +0100)
app.js

diff --git a/app.js b/app.js
index a011513..592d2a9 100644 (file)
--- a/app.js
+++ b/app.js
@@ -59,7 +59,7 @@ function toggleVisible(element) {
     if (elt.id != element) elt.style.display = "none";
     else elt.style.display = "block";
   }
-  if (element.id == "boardContainer") {
+  if (element == "boardContainer") {
     // Avoid smartphone scrolling effects (TODO?)
     document.querySelector("html").style.overflow = "hidden";
     document.body.style.overflow = "hidden";
@@ -67,7 +67,7 @@ function toggleVisible(element) {
   else {
     document.querySelector("html").style.overflow = "visible";
     document.body.style.overflow = "visible";
-    if (element.id == "newGame") {
+    if (element == "newGame") {
       // Workaround "superposed texts" effect
       inputName.focus();
       inputName.blur();