FIX: do not override logo markup when loading page in dark mode

Ensures that when loading the page in dark mode, logo can switch back to light logo if user toggles their OS appearance.
This commit is contained in:
Penar Musaraj
2020-08-18 20:33:42 -04:00
parent ed0e1e28b4
commit 1a7391a251
3 changed files with 10 additions and 9 deletions

View File

@@ -202,10 +202,10 @@ widgetTest("dark color scheme and dark logo set", {
beforeEach() {
this.siteSettings.site_logo_url = bigLogo;
this.siteSettings.site_logo_dark_url = darkLogo;
Session.currentProp("darkColorScheme", true);
Session.currentProp("defaultColorSchemeIsDark", true);
},
afterEach() {
Session.currentProp("darkColorScheme", null);
Session.currentProp("defaultColorSchemeIsDark", null);
},
test(assert) {
assert.ok(find("img#site-logo.logo-big").length === 1);
@@ -222,10 +222,10 @@ widgetTest("dark color scheme and dark logo not set", {
beforeEach() {
this.siteSettings.site_logo_url = bigLogo;
this.siteSettings.site_logo_dark_url = "";
Session.currentProp("darkColorScheme", true);
Session.currentProp("defaultColorSchemeIsDark", true);
},
afterEach() {
Session.currentProp("darkColorScheme", null);
Session.currentProp("defaultColorSchemeIsDark", null);
},
test(assert) {
assert.ok(find("img#site-logo.logo-big").length === 1);