mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
js: add support to detect alt, meta and control key in keydown handler (#704)
This fixes a quite severe user experience issue where pressing the 'alt', 'meta' and/or 'ctrl' key along with one of the supported keys (e.g. 'f' to enter video fullscreen mode) would overwrite the default browser behavior. In the case of 'f+meta' we would enter fullscreen mode, and not open the browser search panel as one might expect. This change is required to stay consistent with the way YouTube handles keydown events.
This commit is contained in:
parent
2b94975345
commit
acaf7b969a
1 changed files with 8 additions and 3 deletions
|
@ -327,8 +327,13 @@ window.addEventListener('keydown', e => {
|
||||||
let action = null;
|
let action = null;
|
||||||
|
|
||||||
const code = e.keyCode;
|
const code = e.keyCode;
|
||||||
const key = e.key;
|
const decoratedKey =
|
||||||
switch (key) {
|
e.key
|
||||||
|
+ (e.altKey ? '+alt' : '')
|
||||||
|
+ (e.ctrlKey ? '+ctrl' : '')
|
||||||
|
+ (e.metaKey ? '+meta' : '')
|
||||||
|
;
|
||||||
|
switch (decoratedKey) {
|
||||||
case ' ':
|
case ' ':
|
||||||
case 'k':
|
case 'k':
|
||||||
action = toggle_play;
|
action = toggle_play;
|
||||||
|
@ -405,7 +410,7 @@ window.addEventListener('keydown', e => {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
console.info('Unhandled key down event: %s:', key, e);
|
console.info('Unhandled key down event: %s:', decoratedKey, e);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue