mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-06 06:10:54 +00:00
3.5.315. Emote tab completion for whisper windows. Transparent Colored badges. Dynamically generate Twitch badge CSS. CSS tweaks. Fix a bug where the chat settings menu wouldn't be hooked properly and modernized it. Closes #27. Closes #26. Closes #24.
This commit is contained in:
parent
21e823a15c
commit
7e24fa6c0e
16 changed files with 320 additions and 243 deletions
|
@ -834,6 +834,10 @@ FFZ.prototype._modify_chat_line = function(component, is_vod) {
|
|||
'';
|
||||
},
|
||||
|
||||
buildBadgesHTML: function() {
|
||||
return '<span class="badges">' + f.render_badges(f.get_line_badges(this.get('msgObject'))) + '</span>';
|
||||
},
|
||||
|
||||
buildSenderHTML: function() {
|
||||
var output = '';
|
||||
|
||||
|
@ -846,7 +850,7 @@ FFZ.prototype._modify_chat_line = function(component, is_vod) {
|
|||
output += this.buildModIconsHTML();
|
||||
|
||||
// Badges
|
||||
output += '<span class="badges">' + f.render_badges(f.get_line_badges(this.get('msgObject'))) + '</span>';
|
||||
output += this.buildBadgesHTML();
|
||||
|
||||
// From!
|
||||
output += this.buildFromHTML();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue