From e7beac8992c7b6ba8740ebc0bcaa4d4b276ebbf7 Mon Sep 17 00:00:00 2001 From: defacer Date: Thu, 12 May 2005 14:46:16 +0000 Subject: [PATCH] Removing dead code. --- lib/javascript-static.js | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/lib/javascript-static.js b/lib/javascript-static.js index ccc5b05446f..7a91ffab826 100644 --- a/lib/javascript-static.js +++ b/lib/javascript-static.js @@ -210,28 +210,3 @@ function fix_column_width(colName) { } } } - -/* - -Is there some specific reason for this function? I think pretty -much every browser worth considering supports getElementById() [Jon] - -function getObj(id) -{ - if (document.getElementById) - { - this.obj = document.getElementById(id); - this.style = document.getElementById(id).style; - } - else if (document.all) - { - this.obj = document.all[id]; - this.style = document.all[id].style; - } - else if (document.layers) - { - this.obj = document.layers[id]; - this.style = document.layers[id]; - } -} -*/