(client/player) disable hotkeys modifiers for numbers

fixes #771
pull/789/head
Rigel Kent 2018-07-06 21:34:53 +02:00
parent c9e96ead93
commit c4ccb08ab0
No known key found for this signature in database
GPG Key ID: EA12971B0E438F36
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,8 @@ function getVideojsOptions (options: {
if (options.enableHotkeys === true) {
Object.assign(videojsOptions.plugins, {
hotkeys: {
enableVolumeScroll: false
enableVolumeScroll: false,
enableModifiersForNumbers: false
}
})
}