fix linting errors
This commit is contained in:
parent
6b8554517c
commit
954966abbb
1 changed files with 6 additions and 6 deletions
|
@ -363,13 +363,13 @@ export default React.memo<Props>(function VideoJs(props: Props) {
|
|||
videoNode.muted = !videoNode.muted;
|
||||
}
|
||||
if (e.keyCode === VOLUME_DOWN_KEYCODE) {
|
||||
player.volume(player.volume()-0.05);
|
||||
OVERLAY.showVolumeverlay(player, Math.round(player.volume()*100));
|
||||
player.volume(player.volume() - 0.05);
|
||||
OVERLAY.showVolumeverlay(player, Math.round(player.volume() * 100));
|
||||
player.userActive(true);
|
||||
}
|
||||
if (e.keyCode === VOLUME_UP_KEYCODE) {
|
||||
player.volume(player.volume()+0.05);
|
||||
OVERLAY.showVolumeverlay(player, Math.round(player.volume()*100));
|
||||
player.volume(player.volume() + 0.05);
|
||||
OVERLAY.showVolumeverlay(player, Math.round(player.volume() * 100));
|
||||
player.userActive(true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue