aboutsummaryrefslogtreecommitdiffstats
path: root/template.go
diff options
context:
space:
mode:
Diffstat (limited to 'template.go')
-rw-r--r--template.go2
1 files changed, 1 insertions, 1 deletions
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 () {
22 e.preventDefault(); 22 e.preventDefault();
23 var query = prompt("Please enter required input: ", ""); 23 var query = prompt("Please enter required input: ", "");
24 if (query != null) { 24 if (query != null) {
25 window.location = e.target.href + "%09" + query; 25 window.location = e.target.href + "?" + query;
26 } 26 }
27 }); 27 });
28}); 28});