зеркало из https://github.com/mozilla/gecko-dev.git
Fix bug #9925: Down arrow behaves incorrectly.
This commit is contained in:
Родитель
0e3f2dbe1b
Коммит
8d06b361dc
|
@ -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();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче