Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/154a6b39be035a7b9b73b202d3719245ab575d5e You should set ROOT_URL correctly, otherwise the web may not work correctly.

Use t as shortcut to series search navigator

pull/6/head
Mark McDowall 12 years ago
parent df967c1ed1
commit 154a6b39be

@ -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…
Cancel
Save