2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-20 01:09:03 +00:00

Merge pull request #33 from ericsaboia/patch-1

Removing empty query validation on value change
This commit is contained in:
Tomas Kirda 2013-02-08 11:58:24 -08:00
commit 3264901000

View File

@ -360,7 +360,7 @@
return; return;
} }
if (q === '' || q.length < that.options.minChars) { if (q.length < that.options.minChars) {
that.hide(); that.hide();
} else { } else {
that.getSuggestions(q); that.getSuggestions(q);