fixes braces per shaver
This commit is contained in:
mattwillis%gmail.com 2005-01-08 02:20:19 +00:00
Родитель 7ef01c388b
Коммит bae0ceb537
2 изменённых файлов: 4 добавлений и 6 удалений

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

@ -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 );
}
}

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

@ -1219,11 +1219,10 @@ function updateDeleteExceptionButton()
{
var repeatCheckBox = document.getElementById( "repeat-checkbox" );
if ( !repeatCheckBox.checked ) {
if ( !repeatCheckBox.checked )
disableElement("delete-exception-button");
} else {
else
updateListboxDeleteButton("exception-dates-listbox", "delete-exception-button");
}
}