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:
parent
2e37e1970c
commit
f554bc8f61
5 changed files with 35 additions and 9 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue