mirror of https://github.com/iv-org/invidious.git
player shortcuts: ignore numpad
This commit is contained in:
parent
f73aef33f0
commit
3c882cff6e
|
@ -612,6 +612,9 @@ window.addEventListener('keydown', e => {
|
|||
case '7':
|
||||
case '8':
|
||||
case '9':
|
||||
// Ignore numpad numbers
|
||||
if (code > 57) break;
|
||||
|
||||
const percent = (code - 48) * 10;
|
||||
action = set_time_percent.bind(this, percent);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue