Manual search: Focus text field when opened (#568)

This commit is contained in:
larsjohnsen
2016-10-25 10:07:31 +02:00
committed by JigSaw
parent 0c02c22654
commit 5a04e66abe

View File

@@ -467,6 +467,10 @@ function bindUIButtons() {
var releaseDialog = $(releaseTemplate({ indexers: indexers }));
$("#modals").append(releaseDialog);
releaseDialog.modal("show");
releaseDialog.on('shown.bs.modal', function() {
releaseDialog.find('#searchquery').focus();
});
var setCategories = function (tracker, items) {
var cats = {};
@@ -666,4 +670,4 @@ function bindUIButtons() {
doNotify("Request to Jackett server failed", "danger", "glyphicon glyphicon-alert");
});
});
}
}