This commit is contained in:
Mirek Kratochvil 2023-06-17 22:51:40 +02:00
parent cc00f805ed
commit c63bac3edd

View file

@ -95,7 +95,9 @@
function handle_search_input(ev) {
run_search(ev.target.value)
window.history.pushState("", "", window.location.pathname + '?search_query='+encodeURIComponent(ev.target.value))
window.history.pushState("", "",
window.location.pathname + '?search_query='+encodeURIComponent(ev.target.value)
)
el_query.addEventListener('input', handle_search_input)
}