testing...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-06-11 00:52:26 +03:00
parent 282fda76b1
commit de606c2ec6

View File

@ -2590,6 +2590,7 @@ var BaseBrowserPrototype = {
function(){ return this.focused || 0 },
false),
// XXX these should skip disabled...
select: makeItemEventMethod('select',
function(evt, items){
items.forEach(function(item){
@ -2843,6 +2844,11 @@ var BrowserPrototype = {
Enter: 'open',
Space: 'toggleSelect',
ctrl_A: 'select!: "*"',
ctrl_D: 'deselect!: "*"',
ctrl_I: 'toggleSelect!: "*"',
// NOTE: do not bind this key, it is used to jump to buttons
// via tabindex...
Tab: 'NEXT',