summaryrefslogtreecommitdiff
path: root/searx/static/js/searx.js
diff options
context:
space:
mode:
Diffstat (limited to 'searx/static/js/searx.js')
-rw-r--r--searx/static/js/searx.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/searx/static/js/searx.js b/searx/static/js/searx.js
index 7b224a17f..15e6012c2 100644
--- a/searx/static/js/searx.js
+++ b/searx/static/js/searx.js
@@ -1,3 +1,20 @@
+window.addEvent('domready', function() {
+ new Autocompleter.Request.JSON('q', '/', {
+ postVar:'q',
+ postData:{
+ 'autocompleter': 1,
+ 'format': 'json'
+ },
+ ajaxOptions:{
+ timeout: 5 // Correct option?
+ },
+ 'minLength': 4,
+ 'selectMode': 'type-ahead',
+ cache: true,
+ delay: 300
+ });
+});
+
(function (w, d) {
'use strict';
function addListener(el, type, fn) {