Dumped Unused Function

Signed-off-by: Jason Costomiris <jcostom@jasons.org>
This commit is contained in:
Jason Costomiris 2018-07-09 21:19:14 -04:00
parent 0354c4fbc8
commit 1e0f71ee08

View File

@ -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 */
}
//-->