mirror of
https://github.com/Readarr/Readarr
synced 2025-12-24 09:12:51 +01:00
Fixed: Don't block ctrl+t from opening a new tab
This commit is contained in:
parent
9d29df836d
commit
44abb6fae8
1 changed files with 4 additions and 0 deletions
|
|
@ -10,6 +10,10 @@ define(
|
|||
return;
|
||||
}
|
||||
|
||||
if (e.ctrlKey) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (e.keyCode === 84) {
|
||||
$('.x-series-search').focus();
|
||||
e.preventDefault();
|
||||
|
|
|
|||
Loading…
Reference in a new issue