Skip to content

Commit

Permalink
Reduce to minimum of 3 characters.
Browse files Browse the repository at this point in the history
If autocompleting an ICAO code, might only need 3 characters total.
  • Loading branch information
mrubinsk committed Aug 13, 2016
1 parent 8308733 commit 3c74640
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -58,7 +58,7 @@ protected function _getAutoCompleter()
);

return new Horde_Core_Ajax_Imple_AutoCompleter_Ajax(array(
'minChars' => 5,
'minChars' => 3,
'tokens' => array(),
'domParent' => 'horde-content',
'filterCallback' => 'function(c) {
Expand Down

0 comments on commit 3c74640

Please sign in to comment.