Move check to this.

master
Vitaliy Filippov 10 years ago
parent 48c06cced3
commit 01cad41a87
  1. 4
      hinter.js

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

Loading…
Cancel
Save