summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html
index 31dfd14..5a8b1b6 100644
--- a/index.html
+++ b/index.html
@@ -10,7 +10,7 @@
e.preventDefault();
var args = $('.prompt').val();
$('.prompt').val('');
- $.getJSON('/scan/', {'cmd': args}, function(r){
+ $.getJSON('scan/', {'cmd': args}, function(r){
$(r.results).each(function(i, e){
$('<li/>').text(e.raw).appendTo('.output');
});