Accept tags consisting of only two letters, too.

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

View File

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