This commit is contained in:
mgalli%geckonnection.com 2006-01-18 16:58:33 +00:00
Родитель d3ada3903a
Коммит cdb1358e9b
1 изменённых файлов: 12 добавлений и 4 удалений

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

@ -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>