1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix redundant double negation errors

This commit is contained in:
Bill Thornton 2020-02-26 00:19:04 -05:00
parent f7997d5270
commit fb2fe462df
3 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ define(['dom', 'focusManager'], function (dom, focusManager) {
if (e.ctrlKey) {
return;
}
if (!!e.shiftKey) {
if (e.shiftKey) {
return;
}
if (e.altKey) {