|
|
|
@ -47,8 +47,6 @@ var SimpleAutocomplete = function(input, dataLoader, params) |
|
|
|
|
{ |
|
|
|
|
if (typeof(input) == 'string') |
|
|
|
|
input = document.getElementById(input); |
|
|
|
|
if (emptyText === undefined) |
|
|
|
|
emptyText = 'No items found'; |
|
|
|
|
if (!params) |
|
|
|
|
params = {}; |
|
|
|
|
|
|
|
|
@ -63,6 +61,8 @@ var SimpleAutocomplete = function(input, dataLoader, params) |
|
|
|
|
this.delay = params.delay; |
|
|
|
|
if (this.delay === undefined) |
|
|
|
|
this.delay = 300; |
|
|
|
|
if (this.emptyText === undefined) |
|
|
|
|
this.emptyText = 'No items found'; |
|
|
|
|
|
|
|
|
|
// Variables
|
|
|
|
|
this.timer = null; |
|
|
|
|