aboutsummaryrefslogtreecommitdiffstats
path: root/termcast_server/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'termcast_server/index.html')
-rw-r--r--termcast_server/index.html2
1 files changed, 0 insertions, 2 deletions
diff --git a/termcast_server/index.html b/termcast_server/index.html
index 2ade843..a83d5a0 100644
--- a/termcast_server/index.html
+++ b/termcast_server/index.html
@@ -430,12 +430,10 @@ socket.onmessage = function (e) {
}
if (update.cell.hasOwnProperty('w')) {
if (update.cell.w) {
- console.log("setting colspan to 2");
tr.children[update.col + 1].style.setProperty('display', 'none');
td.colSpan = 2;
}
else {
- console.log("setting colspan to 1");
tr.children[update.col + 1].style.setProperty('display', 'block');
td.colSpan = 1;
}