Commit cc856c7c authored by Ozzieisaacs's avatar Ozzieisaacs

Merge remote-tracking branch 'search_focus/activate-search-focus-if-search-in-progress'

parents 29b94c56 051ffdda
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment