1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-09-04 20:07:58 +00:00

activate search focus if search in progress

This commit is contained in:
celogeek
2020-05-21 16:42:02 +02:00
parent 4332f7a640
commit 051ffdda35

View File

@@ -227,7 +227,9 @@
$(document).ready(function() {
var inp = $('#query').first()
var val = inp.val()
inp.val('').blur().focus().val(val)
if (val.length) {
inp.val('').blur().focus().val(val)
}
});
});
</script>