awesomplete
awesomplete copied to clipboard
If no Results are available in the current list 'evaluate' function throws a TypeError
if (value.length >= this.minChars && this._list.length > 0)
Line 280 in awesomplete.js
This is where the error
TypeError: this._list is undefined is thrown if no elements where found for the search parameter.
Could you please fix this with a this._list != undefined
?
Thx
You have already spotted the file change, you basically have a pull request ready! It will take you like a minute to convert this to a mergeable PR via the Github UI :)
I've created PR because I faced the same issue recently