@@ -9,7 +9,6 @@ import * as Events from '../utils/events.js';
9
9
import { toTitleCase } from '../utils/str.js' ;
10
10
import { IS_IOS } from '../utils/browser.js' ;
11
11
import document from 'global/document' ;
12
- import keycode from 'keycode' ;
13
12
14
13
/** @import Player from '../player' */
15
14
@@ -298,19 +297,19 @@ class MenuButton extends Component {
298
297
handleKeyDown ( event ) {
299
298
300
299
// Escape or Tab unpress the 'button'
301
- if ( keycode . isEventKey ( event , 'Esc' ) || keycode . isEventKey ( event , 'Tab' ) ) {
300
+ if ( event . key === 'Esc' || event . key === 'Tab' ) {
302
301
if ( this . buttonPressed_ ) {
303
302
this . unpressButton ( ) ;
304
303
}
305
304
306
305
// Don't preventDefault for Tab key - we still want to lose focus
307
- if ( ! keycode . isEventKey ( event , 'Tab' ) ) {
306
+ if ( ! event . key === 'Tab' ) {
308
307
event . preventDefault ( ) ;
309
308
// Set focus back to the menu button's button
310
309
this . menuButton_ . focus ( ) ;
311
310
}
312
311
// Up Arrow or Down Arrow also 'press' the button to open the menu
313
- } else if ( ( keycode . isEventKey ( event , 'Up' ) || keycode . isEventKey ( event , 'Down' ) ) && ! ( this . player_ . options_ . playerOptions . spatialNavigation && this . player_ . options_ . playerOptions . spatialNavigation . enabled ) ) {
312
+ } else if ( ( event . key === 'Up' ) || event . key === 'Down' && ! ( this . player_ . options_ . playerOptions . spatialNavigation && this . player_ . options_ . playerOptions . spatialNavigation . enabled ) ) {
314
313
if ( ! this . buttonPressed_ ) {
315
314
event . preventDefault ( ) ;
316
315
this . pressButton ( ) ;
@@ -329,7 +328,7 @@ class MenuButton extends Component {
329
328
*/
330
329
handleMenuKeyUp ( event ) {
331
330
// Escape hides popup menu
332
- if ( keycode . isEventKey ( event , 'Esc' ) || keycode . isEventKey ( event , 'Tab' ) ) {
331
+ if ( event . key === 'Esc' || event . key === 'Tab' ) {
333
332
this . removeClass ( 'vjs-hover' ) ;
334
333
}
335
334
}
@@ -357,12 +356,12 @@ class MenuButton extends Component {
357
356
*/
358
357
handleSubmenuKeyDown ( event ) {
359
358
// Escape or Tab unpress the 'button'
360
- if ( keycode . isEventKey ( event , 'Esc' ) || keycode . isEventKey ( event , 'Tab' ) ) {
359
+ if ( event . key === 'Esc' || event . key === 'Tab' ) {
361
360
if ( this . buttonPressed_ ) {
362
361
this . unpressButton ( ) ;
363
362
}
364
363
// Don't preventDefault for Tab key - we still want to lose focus
365
- if ( ! keycode . isEventKey ( event , 'Tab' ) ) {
364
+ if ( ! event . key === 'Tab' ) {
366
365
event . preventDefault ( ) ;
367
366
// Set focus back to the menu button's button
368
367
this . menuButton_ . focus ( ) ;
0 commit comments