html5video: fixed root keyboard handler for devices with VK_ENTER other than the usual one.
This commit is contained in:
parent
7da6c46da9
commit
14708b4ef8
1 changed files with 6 additions and 6 deletions
|
@ -454,14 +454,14 @@ tv.app = function() {
|
|||
|
||||
});
|
||||
|
||||
var nav = new Ext.KeyNav(Ext.getDoc(), {
|
||||
'enter': function(e) {
|
||||
Ext.getDoc().on('keydown', function(e) {
|
||||
switch(e.getKey()) {
|
||||
case VK_ENTER:
|
||||
chListPanel.show();
|
||||
chList.focus();
|
||||
},
|
||||
'scope': this
|
||||
chList.focus();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
chListPanel.show();
|
||||
chList.focus();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue