Kinda silly to have min length 3 on a field that holds max 2.

This commit is contained in:
George Stephanis 2015-08-10 18:37:53 -04:00
parent 50cf4e6fe5
commit 64475025a6
1 changed files with 1 additions and 1 deletions

View File

@ -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.