diff --git a/static/bundle.js b/static/bundle.js index 2567de3..9b942c9 100644 --- a/static/bundle.js +++ b/static/bundle.js @@ -1,6 +1,9 @@ function searchTriggered() { let searchbox = document.getElementById("searchbox"); let query = searchbox.value + let url = new URL(window.location); + url.hash = query; + window.history.pushState({}, document.title, url); searchFor(query); passQueryToResultpage(query) }