From 0574a0e135d4e2f9df5b0c1ccb00a61750ec1954 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sat, 6 Jun 2020 08:53:44 -0700 Subject: [PATCH] Removing a debugging statement I just happened to notice this errant debug message in my browser's console. --- empires/game.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/empires/game.js b/empires/game.js index 023a314..05b801e 100644 --- a/empires/game.js +++ b/empires/game.js @@ -75,8 +75,6 @@ function register(form) { function toggle_host_tools() { const host_tools = document.getElementById("host-tools"); - console.log("Toggling, host_tools.style.display is '" + host_tools.style.display + "'"); - if (host_tools.style.display === "block") host_tools.style.display = "none"; else -- 2.43.0