From 6418c91bd7fb8d4c8268e2d1606e2f8709263aff Mon Sep 17 00:00:00 2001 From: Dominika Liberda Date: Wed, 21 Jul 2021 09:10:21 +0000 Subject: [PATCH] * fix another typo --- webroot/js/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webroot/js/player.js b/webroot/js/player.js index 563511a..50918d5 100644 --- a/webroot/js/player.js +++ b/webroot/js/player.js @@ -237,7 +237,7 @@ window.addEventListener('DOMContentLoaded', (event) => { function handleKeyboard(e) { console.log(e) - if (e.target.name != "search_query" && !e.ctrlKey && e.altKey) { + if (e.target.name != "search_query" && !e.ctrlKey && !e.altKey) { if (e.key == "ArrowLeft") { // go ahead, complain this is not a switch seekRelative(-5); e.preventDefault();