mirror of
https://github.com/Readarr/Readarr
synced 2026-01-04 06:33:22 +01:00
Use t as shortcut to series search navigator
This commit is contained in:
parent
df967c1ed1
commit
154a6b39be
1 changed files with 11 additions and 0 deletions
11
UI/app.js
11
UI/app.js
|
|
@ -230,5 +230,16 @@ define(
|
|||
'jQuery/TooltipBinder'
|
||||
]);
|
||||
|
||||
$(document).on('keydown', function (e){
|
||||
if ($(e.target).is('input')) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (e.keyCode === 84) {
|
||||
$('.x-series-search').focus();
|
||||
e.preventDefault();
|
||||
}
|
||||
});
|
||||
|
||||
return app;
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue