1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-06-29 15:55:33 +00:00

Attempt to make FrankerFaceZ work with the expected Twitch changes given what I've learned through emails with Twitch staff.

This commit is contained in:
SirStendec 2015-01-12 18:18:23 -05:00
parent 2e37e1970c
commit f554bc8f61
5 changed files with 35 additions and 9 deletions

View file

@ -106,8 +106,9 @@ FFZ.prototype._emotes_for_sets = function(parent, view, sets, header, btn) {
continue;
c++;
var s = document.createElement('span');
s.className = 'emoticon ' + emote.klass + ' tooltip';
var s = document.createElement('img');
s.src = emote.url;
//s.className = 'emoticon ' + emote.klass + ' tooltip';
s.title = emote.name;
s.addEventListener('click', this._add_emote.bind(this, view, emote.name));
grid.appendChild(s);