From 9f2e515a5ef6b27ee393a67b5d904e6e1ffd3242 Mon Sep 17 00:00:00 2001 From: James Mills Date: Tue, 13 Jun 2017 01:29:12 -0700 Subject: Fix handling of queries / indexsearch (itemtype 7) --- template.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'template.go') diff --git a/template.go b/template.go index 604f380..6fb1162 100644 --- a/template.go +++ b/template.go @@ -22,7 +22,7 @@ $(document).ready(function () { e.preventDefault(); var query = prompt("Please enter required input: ", ""); if (query != null) { - window.location = e.target.href + "%09" + query; + window.location = e.target.href + "?" + query; } }); }); -- cgit v1.2.3-54-g00ecf