Kinda silly to have min length 3 on a field that holds max 2.
This commit is contained in:
parent
5ff9e2e52e
commit
a7a12f977e
|
@ -52,7 +52,7 @@
|
|||
// Initialize autocomplete for countries.
|
||||
this.$el.find( 'td.country input' ).autocomplete({
|
||||
source: data.countries,
|
||||
minLength: 3
|
||||
minLength: 2
|
||||
});
|
||||
|
||||
// Initialize autocomplete for states.
|
||||
|
|
Loading…
Reference in New Issue