From: Carl Worth Date: Sat, 6 Jun 2020 15:53:44 +0000 (-0700) Subject: Removing a debugging statement X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=commitdiff_plain;h=0574a0e135d4e2f9df5b0c1ccb00a61750ec1954 Removing a debugging statement I just happened to notice this errant debug message in my browser's console. --- 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