https://github.com/twitter/typeahead.js
Is there an option to wildcard the search terms in Bloodhound?
For example, if a description is "Import from film_actor" then search will pick it up for film but not for actor; want it to search *term*
and not just term*
.
Here is my setup:
var datasets = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.whitespace('name description'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
local: activeWorkspace.get('datasets')
});