mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-09 07:40:53 +00:00
3.5.426. Fix ember navigation to game directories. Fix mod badges in Firefox. Change badge rendering for the API to not needlessly duplicate data structures. Add bttv-room-message event for API. Clean up logging output for Firefox developers. Fix issue in socket handling. Tweak chat sub notification appearance. Closes #104
This commit is contained in:
parent
87e7a7fb29
commit
7e88c18ead
11 changed files with 99 additions and 52 deletions
|
@ -69,6 +69,7 @@ var FFZ = window.FrankerFaceZ,
|
|||
'background-repeat:no-repeat;' +
|
||||
'background-size:initial !important;' +
|
||||
'background-position:center;' +
|
||||
'background-image: url("' + urls[1] + '") !important;' +
|
||||
'background-image:' + image_set + ' !important}' +
|
||||
'.from-display-preview[data-room="' + room.id + '"] .badges .moderator:not(.ffz-badge-replacement).colored,' +
|
||||
'.chat-line[data-room="' + room.id + '"] .badges .moderator:not(.ffz-badge-replacement).colored {' +
|
||||
|
@ -1153,6 +1154,9 @@ FFZ.prototype._load_room_json = function(room_id, callback, data) {
|
|||
|
||||
this.rooms[room_id] = data;*/
|
||||
|
||||
this.log("Loading Room Data: " + room_id, model);
|
||||
this.log(" -- has CSS: " + ~~(model.css) + " -- has mod URLs: " + ~~(model.mod_urls));
|
||||
|
||||
if ( model.css || model.mod_urls )
|
||||
utils.update_css(this._room_style, room_id, moderator_css(model) + (model.css || ""));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue