merge branch into master

This commit is contained in:
koirand 2020-02-24 01:12:04 +09:00
commit e628e67fd1

View file

@ -96,6 +96,7 @@ const initUI = () => {
$('#searchBoxIcon').click(() => { $('#searchBoxIcon').click(() => {
$('#searchBoxInput').val('') $('#searchBoxInput').val('')
$('#searchBoxInput').trigger('keyup') $('#searchBoxInput').trigger('keyup')
$('#searchBoxInput').focus()
}) })
// Event when chenging query // Event when chenging query
@ -126,6 +127,9 @@ const initUI = () => {
// Emit keyup event for when the query is already setted with browser back etc. // Emit keyup event for when the query is already setted with browser back etc.
$('#searchBoxInput').trigger('keyup') $('#searchBoxInput').trigger('keyup')
// Focus at searchBox
$('#searchBoxInput').focus()
} }
/** /**