Support dashes in dependencies search box

This commit replaces the query tokenizer with a "nonword" tokenizer, in
order to mirror the one used for the indexation process.
This allows users to enter dashes in their search queries such as
"data-" and still get meaningful results.

Fixes #209
This commit is contained in:
Brian Clozel 2016-03-30 17:25:56 +02:00
parent d03a332ffa
commit 96d5c4184e

View File

@ -181,7 +181,7 @@ $(function () {
});
var starters = new Bloodhound({
datumTokenizer: Bloodhound.tokenizers.obj.nonword('name', 'description', 'keywords', 'group'),
queryTokenizer: Bloodhound.tokenizers.whitespace,
queryTokenizer: Bloodhound.tokenizers.nonword,
identify: function (obj) {
return obj.id;
},