mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Use t as shortcut to series search navigator
This commit is contained in:
@@ -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;
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user