From 1e0f71ee089f5e508f223d14d84bd6d789a317ff Mon Sep 17 00:00:00 2001 From: Jason Costomiris Date: Mon, 9 Jul 2018 21:19:14 -0400 Subject: [PATCH] Dumped Unused Function Signed-off-by: Jason Costomiris --- funcs.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/funcs.js b/funcs.js index 482d2b6..e01ec72 100644 --- a/funcs.js +++ b/funcs.js @@ -421,18 +421,4 @@ function parseQueryString (str) window.onload = calcOnLoad; -function toggleColumn(cb) -{ - var colName = 'col_'+(cb.id.substr(3)); - var col = document.getElementById(colName); - - if (cb.checked) { - col.style.display = 'block'; - } - else { - col.style.display = 'none'; - } - recreateTables(); /* because IE draws lines all over the place with border-collapse */ -} - //-->