This commit is contained in:
Jiiks 2015-10-26 06:24:48 +02:00
parent 3c355e27e9
commit 4c66e9eb7d
1 changed files with 1 additions and 1 deletions

View File

@ -511,7 +511,7 @@ QuickEmoteMenu.prototype.initEmoteList = function() {
for(var emote in emotesTwitch.emotes) {
if(emotesTwitch.emotes.hasOwnProperty(emote)) {
var id = emotesTwitch.emotes[emote].image_id;
emoteMenuBody.append($("<div/>" , { class: "emote-container" }).append($("<img/>", { class: "emote-icon", id: emote, alt: "", src: "https://static-cdn.jtvnw.net/emoticons/v1/"+id+"/1.0", title: emote })));
// emoteMenuBody.append($("<div/>" , { class: "emote-container" }).append($("<img/>", { class: "emote-icon", id: emote, alt: "", src: "https://static-cdn.jtvnw.net/emoticons/v1/"+id+"/1.0", title: emote })));
}
}
};