fixes braces per shaver
This commit is contained in:
mattwillis%gmail.com 2007-12-21 16:35:26 +00:00
Родитель fb1b4ead24
Коммит 647dcf6e42
1 изменённых файлов: 2 добавлений и 3 удалений

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

@ -219,11 +219,10 @@ function processEnableCheckbox( checkboxId, elementId )
function updateListboxDeleteButton( listboxId, buttonId )
{
if ( document.getElementById( listboxId ).getRowCount() > 0 ) {
if ( document.getElementById( listboxId ).getRowCount() > 0 )
enableElement( buttonId );
} else {
else
disableElement( buttonId );
}
}