1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-02 17:18:31 +00:00

3.5.138. Fixed Chat Room Management tooltip. Fixed subscriber emote favorite stars. Fixed chat lines as much as I can for now.

This commit is contained in:
SirStendec 2016-03-24 14:48:53 -04:00
parent 4972ae3c54
commit e6757432a8
4 changed files with 46 additions and 20 deletions

View file

@ -561,7 +561,7 @@ FFZ.menu_pages.channel = {
if ( emote.emoticon_set ) {
var favs = this.settings.favorite_emotes["twitch-" + emote.emoticon_set];
s.classList.add('ffz-can-favorite');
s.classList.toggle('ffz-favorite', favs && favs.indexOf(emote.id) !== -1);
s.classList.toggle('ffz-favorite', favs && favs.indexOf(emote.id) !== -1 || false);
}
s.setAttribute('data-emote', emote.id);