Accept tags consisting of only two letters, too.

This commit is contained in:
Aaron van Geffen 2016-11-13 22:57:19 +01:00
parent 0a55730696
commit 1f7fe35cec
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ class ProvideAutoSuggest extends JSONController
{ {
$data = array_unique(explode(' ', urldecode($_REQUEST['data']))); $data = array_unique(explode(' ', urldecode($_REQUEST['data'])));
$data = array_filter($data, function($item) { $data = array_filter($data, function($item) {
return strlen($item) >= 3; return strlen($item) >= 2;
}); });
$this->payload = ['items' => []]; $this->payload = ['items' => []];

View File

@ -69,7 +69,7 @@ AutoSuggest.prototype.onType = function(input, event) {
} }
var tokens = input.value.split(/\s+/).filter(function(token) { var tokens = input.value.split(/\s+/).filter(function(token) {
return token.length >= 3; return token.length >= 2;
}); });
if (tokens.length === 0) { if (tokens.length === 0) {