]> git.cworth.org Git - lmno.games/commitdiff
Removing a debugging statement
authorCarl Worth <cworth@cworth.org>
Sat, 6 Jun 2020 15:53:44 +0000 (08:53 -0700)
committerCarl Worth <cworth@cworth.org>
Sat, 6 Jun 2020 15:53:44 +0000 (08:53 -0700)
I just happened to notice this errant debug message in my browser's
console.

empires/game.js

index 023a31412c1676612b0bd69b82a2aa2d05e0d36c..05b801e352d0e6c0c51e84cfc157e43162024f50 100644 (file)
@@ -75,8 +75,6 @@ function register(form) {
 function toggle_host_tools() {
   const host_tools = document.getElementById("host-tools");
 
 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
   if (host_tools.style.display === "block")
     host_tools.style.display = "none";
   else