mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 07:32:38 +00:00
parent
aa55849e62
commit
4be1c19c50
1 changed files with 7 additions and 0 deletions
|
@ -455,6 +455,13 @@ function bindUIButtons() {
|
|||
setCategories(trackerId, this.items);
|
||||
}, scope));
|
||||
|
||||
document.getElementById("searchquery")
|
||||
.addEventListener("keyup", function (event) {
|
||||
event.preventDefault();
|
||||
if (event.keyCode == 13) {
|
||||
document.getElementById("jackett-search-perform").click();
|
||||
}
|
||||
});
|
||||
|
||||
$('#jackett-search-perform').click(function () {
|
||||
if ($('#jackett-search-perform').text().trim() !== 'Search trackers') {
|
||||
|
|
Loading…
Reference in a new issue