mirror of
https://gitee.com/dcren/initializr.git
synced 2025-04-05 17:38:06 +08:00
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:
parent
d03a332ffa
commit
96d5c4184e
@ -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;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user