1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-27 05:17:41 +00:00

Get_meta button unfocused on return to edit books

This commit is contained in:
Ozzie Isaacs
2021-07-31 09:00:34 +02:00
parent 250cafe814
commit 53603f79bd
5 changed files with 11 additions and 5 deletions

View File

@@ -269,3 +269,4 @@ $("#xchange").click(function () {
$("#book_title").val($("#bookAuthor").val());
$("#bookAuthor").val(title);
});

View File

@@ -107,4 +107,9 @@ $(function () {
$("#keyword").val(bookTitle);
doSearch(bookTitle);
});
$("#metaModal").on("show.bs.modal", function(e) {
$(e.relatedTarget).one('focus', function (e) {
$(this).blur();
});
});
});