From ecd293c8a90f0adef5f3e07f8c99c94a3beae63a Mon Sep 17 00:00:00 2001 From: Thomas Pointhuber Date: Wed, 19 Mar 2014 20:19:44 +0100 Subject: add front-part of autocompleter function --- searx/static/js/searx.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'searx/static/js/searx.js') 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) { -- cgit v1.2.3