Move check to this.

master
Vitaliy Filippov 2013-01-09 15:32:58 +00:00
parent 48c06cced3
commit 01cad41a87
1 changed files with 2 additions and 2 deletions

View File

@ -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;