зеркало из https://github.com/mozilla/pjs.git
Feature advance / rewind.
This commit is contained in:
Родитель
d3ada3903a
Коммит
cdb1358e9b
|
@ -101,11 +101,20 @@
|
|||
if(tryElement) {
|
||||
if(e.keyCode==tryElement.rule_keyCode) {
|
||||
|
||||
|
||||
e.preventBubble();
|
||||
|
||||
document.getElementById(tryElement.rule_focusTo).focus();
|
||||
if(tryElement.rule_focusTo.indexOf("#advance")>-1) {
|
||||
|
||||
document.commandDispatcher.advanceFocus();
|
||||
} else if (tryElement.rule_focusTo.indexOf("#rewind")>-1) {
|
||||
|
||||
document.commandDispatcher.rewindFocus();
|
||||
} else {
|
||||
if(document.getElementById(tryElement.rule_focusTo)) {
|
||||
|
||||
document.getElementById(tryElement.rule_focusTo).focus();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -141,5 +150,4 @@
|
|||
|
||||
</binding>
|
||||
|
||||
</bindings>
|
||||
|
||||
</bindings>
|
Загрузка…
Ссылка в новой задаче