Fix bug #9925: Down arrow behaves incorrectly.

This commit is contained in:
slamm%netscape.com 1999-08-04 23:10:56 +00:00
Родитель 0e3f2dbe1b
Коммит 8d06b361dc
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -122,6 +122,7 @@ function moveDown() {
var optionAfter = list.childNodes.item(index+1);
list.remove(index+1);
list.insertBefore(optionAfter, selectedOption);
list.selectedIndex = index + 1;
enableButtons();
enableSave();
}

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

@ -122,6 +122,7 @@ function moveDown() {
var optionAfter = list.childNodes.item(index+1);
list.remove(index+1);
list.insertBefore(optionAfter, selectedOption);
list.selectedIndex = index + 1;
enableButtons();
enableSave();
}