mirror of https://github.com/calzoneman/sync.git
Fix #981
This commit is contained in:
parent
227244e2d0
commit
4c437efb5d
|
@ -2702,8 +2702,7 @@ function execEmotes(msg) {
|
|||
}
|
||||
|
||||
CHANNEL.emotes.forEach(function (e) {
|
||||
msg = msg.replace(e.regex, '$1<img class="channel-emote" src="' +
|
||||
e.image + '" title="' + e.name + '">');
|
||||
msg = msg.replace(e.regex, '$1' + emoteToImg(e).outerHTML);
|
||||
});
|
||||
|
||||
return msg;
|
||||
|
@ -2711,13 +2710,12 @@ function execEmotes(msg) {
|
|||
|
||||
function execEmotesEfficient(msg) {
|
||||
CHANNEL.badEmotes.forEach(function (e) {
|
||||
msg = msg.replace(e.regex, '$1<img class="channel-emote" src="' +
|
||||
e.image + '" title="' + e.name + '">');
|
||||
msg = msg.replace(e.regex, '$1' + emoteToImg(e).outerHTML);
|
||||
});
|
||||
msg = msg.replace(/[^\s]+/g, function (m) {
|
||||
if (CHANNEL.emoteMap.hasOwnProperty(m)) {
|
||||
var e = CHANNEL.emoteMap[m];
|
||||
return '<img class="channel-emote" src="' + e.image + '" title="' + e.name + '">';
|
||||
return emoteToImg(e).outerHTML;
|
||||
} else {
|
||||
return m;
|
||||
}
|
||||
|
@ -2725,6 +2723,14 @@ function execEmotesEfficient(msg) {
|
|||
return msg;
|
||||
}
|
||||
|
||||
function emoteToImg(e) {
|
||||
var img = document.createElement('img');
|
||||
img.className = 'channel-emote';
|
||||
img.title = e.name;
|
||||
img.src = e.image;
|
||||
return img;
|
||||
}
|
||||
|
||||
function initPm(user) {
|
||||
if ($("#pm-" + user).length > 0) {
|
||||
return $("#pm-" + user);
|
||||
|
|
Loading…
Reference in New Issue