Get rid of some debugging code that shouldn't have been there to begin with.

This commit is contained in:
tonyr%fbdesigns.com 2000-02-14 00:36:00 +00:00
Родитель ee875eb6ea
Коммит 7d7d90be2d
1 изменённых файлов: 1 добавлений и 12 удалений

Просмотреть файл

@ -90,17 +90,6 @@ function ListFields() {
}
}
function BoxClick( item)
{
body = document.getElementById("fieldBody");
try {
dump( "Value: " + body.childNodes[item].firstChild.firstChild.firstChild.checked + "\n");
}
catch( ex) {}
return( true);
}
function CreateField( name, index, on, cBoxIndex)
{
@ -115,7 +104,7 @@ function CreateField( name, index, on, cBoxIndex)
cBox.setAttribute( 'type', "checkbox");
if (on == true)
cBox.setAttribute( 'checked', "true");
cBox.onclick = new Function( "return BoxClick( " + cBoxIndex + ")");
// cBox.onclick = new Function( "return BoxClick( " + cBoxIndex + ")");
cCell.appendChild( cBox);
cCell.setAttribute( 'allowevents', "true");