empty alt for missing emotes
This commit is contained in:
parent
3df9651f0b
commit
c286e288c3
|
@ -383,7 +383,7 @@ QuickEmoteMenu.prototype.initEmoteList = function() {
|
|||
var command = emote;
|
||||
var id = emotesTwitch.emotes[emote].image_id;
|
||||
|
||||
emoteMenuBody.append($("<div/>" , { class: "emote-container" }).append($("<img/>", { class: "emote-icon", id: emote, 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 })));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -82,6 +82,6 @@ QuickEmoteMenu.prototype.initEmoteList = function() {
|
|||
var command = emote;
|
||||
var id = emotesTwitch.emotes[emote].image_id;
|
||||
|
||||
emoteMenuBody.append($("<div/>" , { class: "emote-container" }).append($("<img/>", { class: "emote-icon", id: emote, 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 })));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue