mirror of
https://github.com/devbridge/jQuery-Autocomplete.git
synced 2024-11-09 23:01:00 +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;
|
||||
}
|
||||
|
||||
if (q === '' || q.length < that.options.minChars) {
|
||||
if (q.length < that.options.minChars) {
|
||||
that.hide();
|
||||
} else {
|
||||
that.getSuggestions(q);
|
||||
|
Loading…
Reference in New Issue
Block a user