2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-19 16:59:01 +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;
}
if (q === '' || q.length < that.options.minChars) {
if (q.length < that.options.minChars) {
that.hide();
} else {
that.getSuggestions(q);