We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53c355b commit dce0e92Copy full SHA for dce0e92
src/plugins/hotkeys/hotkeys.ts
@@ -58,12 +58,12 @@ export default class Hotkeys {
58
59
if (
60
[9, 32, 37, 39].includes(keyCode) &&
61
- this.player.autoHideGranted &&
+ this.player.Vlitejs.autoHideGranted &&
62
(activeElement === this.player.elements.container || activeElement?.closest('.v-vlite'))
63
) {
64
// Stop and start the auto hide timer on selected key code
65
- this.player.stopAutoHideTimer()
66
- this.player.startAutoHideTimer()
+ this.player.Vlitejs.stopAutoHideTimer()
+ this.player.Vlitejs.startAutoHideTimer()
67
} else if (
68
[37, 39].includes(keyCode) &&
69
(activeElement === this.player.elements.container || activeElement === this.player.elements.progressBar)
0 commit comments