File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -346,10 +346,6 @@ export default {
346
346
if ( key === KeyCodes . ESC ) {
347
347
// Close on ESC
348
348
this . onEsc ( evt )
349
- } else if ( key === KeyCodes . TAB ) {
350
- // Close on tab out
351
- /* istanbul ignore next: not used and should be removed */
352
- this . onTab ( evt )
353
349
} else if ( key === KeyCodes . DOWN ) {
354
350
// Down Arrow
355
351
this . focusNext ( evt , false )
@@ -367,14 +363,6 @@ export default {
367
363
this . $once ( 'hidden' , this . focusToggler )
368
364
}
369
365
} ,
370
- onTab ( evt ) /* istanbul ignore next: not easy to test */ {
371
- // TODO: Need special handler for dealing with form inputs
372
- // Tab, if in a text-like input, we should just focus next item in the dropdown
373
- // Note: Inputs are in a special .dropdown-form container
374
- } ,
375
- onMouseOver ( evt ) /* istanbul ignore next: not easy to test */ {
376
- // Removed mouseover focus handler
377
- } ,
378
366
// Document click out listener
379
367
clickOutHandler ( ) {
380
368
if ( this . visible ) {
You can’t perform that action at this time.
0 commit comments