1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-17 18:26:57 +00:00

3.5.514. Fix schedule parsing. Dark CSS tweak for chat replay.

This commit is contained in:
SirStendec 2017-09-01 16:13:02 -04:00
parent 50f597b769
commit 69d9823206
6 changed files with 26 additions and 7 deletions

View file

@ -63,12 +63,12 @@ FFZ.prototype.modify_vod_chat_display = function(component) {
f._vodc = this;
if ( f.settings.dark_twitch )
this.$().parents('.chat-container').addClass('dark');
this.$().parents('.chat-container').addClass('dark').addClass('theme--dark');
this.parentView.addObserver('layout.isTheatreMode', function() {
if ( f._vodc && f.settings.dark_twitch )
setTimeout(function(){
f._vodc.$().parents('.chat-container').addClass('dark');
f._vodc.$().parents('.chat-container').addClass('dark').addClass('theme--dark');
});
});