Fix bug #9925: Down arrow behaves incorrectly.

This commit is contained in:
slamm%netscape.com 1999-08-04 23:10:56 +00:00
parent 0e3f2dbe1b
commit 8d06b361dc
2 changed files with 2 additions and 0 deletions

View File

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

View File

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