mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-22 21:05:12 +00:00
Merge pull request #33 from ericsaboia/patch-1
Removing empty query validation on value change
This commit is contained in:
commit
3264901000
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user