Restore typeAheadResult support in autocomplete

This commit is contained in:
NTD 2018-04-17 07:31:18 -04:00 committed by Roy Tam
commit 6106e49360
11 changed files with 273 additions and 52 deletions

View file

@ -85,6 +85,11 @@ AutoCompleteResultBase.prototype = {
defaultIndex: -1,
_typeAheadResult: false,
get typeAheadResult() {
return this._typeAheadResult;
},
get matchCount() {
return this._values.length;
},