Rely on fuzzy's case insensitivity, do not trim mode
This commit is contained in:
parent
6a26014b81
commit
cfa9da17a7
@ -1068,7 +1068,7 @@ $(function() {
|
||||
});
|
||||
|
||||
chat.on("input", ".search", function() {
|
||||
const value = $(this).val().toLowerCase();
|
||||
const value = $(this).val();
|
||||
const names = $(this).closest(".users").find(".names");
|
||||
|
||||
names.find(".user").each((i, el) => {
|
||||
@ -1078,7 +1078,7 @@ $(function() {
|
||||
const fuzzyOptions = {
|
||||
pre: "<b>",
|
||||
post: "</b>",
|
||||
extract: el => $(el).text().toLowerCase().replace(/[+%@~]/, "")
|
||||
extract: el => $(el).text()
|
||||
};
|
||||
|
||||
fuzzy.filter(
|
||||
@ -1086,8 +1086,7 @@ $(function() {
|
||||
names.find(".user").toArray(),
|
||||
fuzzyOptions
|
||||
).forEach(el => {
|
||||
const firstChar = $(el.original).text()[0].replace(/[^+%@~]/, "");
|
||||
$(el.original).html(firstChar + el.string).show();
|
||||
$(el.original).html(el.string).show();
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user