mirror of
https://github.com/discourse/discourse.git
synced 2024-12-15 21:33:49 +08:00
FIX: missing emoji autocomplete
This commit is contained in:
parent
28d219dfed
commit
03fcf99039
|
@ -166,7 +166,7 @@ Discourse.Emoji.search = function(term, options) {
|
||||||
var maxResults = (options && options["maxResults"]) || -1;
|
var maxResults = (options && options["maxResults"]) || -1;
|
||||||
if (maxResults === 0) { return []; }
|
if (maxResults === 0) { return []; }
|
||||||
|
|
||||||
toSearch = toSearch || _.merge(_.keys(emojiHash), _.keys(extendedEmoji));
|
toSearch = toSearch || _.union(_.keys(emojiHash), _.keys(extendedEmoji)).sort();
|
||||||
|
|
||||||
var i, results = [];
|
var i, results = [];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user