Typeahead fails if items are numeric!
Created by: sappo
If a numeric list of items is supplied like
date-source="[123, 234, 345]"
the following javascript fails and therefore the typeahead.
matcher: function (item) {
return ~item.toLowerCase().indexOf(this.query.toLowerCase())
}