projects
/
lmno.games
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee62038
)
Removing a debugging statement
author
Carl Worth
<cworth@cworth.org>
Sat, 6 Jun 2020 15:53:44 +0000
(08:53 -0700)
committer
Carl 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
patch
|
blob
|
history
diff --git
a/empires/game.js
b/empires/game.js
index 023a31412c1676612b0bd69b82a2aa2d05e0d36c..05b801e352d0e6c0c51e84cfc157e43162024f50 100644
(file)
--- 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