fix linting errors

This commit is contained in:
DispatchCommit 2021-03-19 18:00:11 -07:00 committed by Sean Yesmunt
parent 6b8554517c
commit 954966abbb

View file

@ -363,13 +363,13 @@ export default React.memo<Props>(function VideoJs(props: Props) {
videoNode.muted = !videoNode.muted; videoNode.muted = !videoNode.muted;
} }
if (e.keyCode === VOLUME_DOWN_KEYCODE) { if (e.keyCode === VOLUME_DOWN_KEYCODE) {
player.volume(player.volume()-0.05); player.volume(player.volume() - 0.05);
OVERLAY.showVolumeverlay(player, Math.round(player.volume()*100)); OVERLAY.showVolumeverlay(player, Math.round(player.volume() * 100));
player.userActive(true); player.userActive(true);
} }
if (e.keyCode === VOLUME_UP_KEYCODE) { if (e.keyCode === VOLUME_UP_KEYCODE) {
player.volume(player.volume()+0.05); player.volume(player.volume() + 0.05);
OVERLAY.showVolumeverlay(player, Math.round(player.volume()*100)); OVERLAY.showVolumeverlay(player, Math.round(player.volume() * 100));
player.userActive(true); player.userActive(true);
} }