Removing dead code.
This commit is contained in:
@@ -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];
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user