mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07: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'
|
'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;
|
return app;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue