From 4cbd604e3d0b7382f804c50ec9470b351a1c8b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gr=C3=B6ber?= Date: Sun, 17 Jan 2021 11:15:04 +0100 Subject: [PATCH] Fix logo-mobile color --- common/body_tag.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/body_tag.html b/common/body_tag.html index f153a41..f91fb10 100644 --- a/common/body_tag.html +++ b/common/body_tag.html @@ -76,6 +76,9 @@ var its = (function() { if($('.logo-big').length > 0) { $('.logo-big').bind('DOMNodeRemoved', function(){ update_dom(state) }); $('.logo-big').attr('src', logos_big[state]).css('display', 'block'); + } else if($('.logo-mobile').length > 0) { + $('.logo-mobile').bind('DOMNodeRemoved', function(){ update_dom(state) }); + $('.logo-mobile').attr('src', logos_big[state]).css('display', 'block'); } else if($('.logo-small').length > 0) { $('.logo-small').bind('DOMNodeRemoved', function(){ update_dom(state) }); $('.logo-small').attr('src', logos_small[state]).css('display', 'block');