From a0e27279c740611b7a6a47a6a419abbb1559ae6c Mon Sep 17 00:00:00 2001 From: tdro Date: Fri, 9 Feb 2024 19:00:31 -0500 Subject: static/js/forms: Activate on storage + DOM load Always expose alternate stylesheets --- static/js/forms.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'static') diff --git a/static/js/forms.ts b/static/js/forms.ts index 24c3d09..3b1aedc 100644 --- a/static/js/forms.ts +++ b/static/js/forms.ts @@ -49,11 +49,13 @@ }); }); - self.addEventListener("storage", function () { - let stylesheet = document.querySelector('link[href$="default-simple.css"]') + ["storage", "DOMContentLoaded"].forEach(function (event) { + self.addEventListener(event, function () { + let stylesheet = document.querySelector('link[href$="default-simple.css"]') - if (localStorage["config.density.low"] === "on") stylesheet.rel = "stylesheet" - if (localStorage["config.density.high"] === "on") stylesheet.rel = "alternate stylesheet" - }); + if (localStorage["config.density.low"] === "on") stylesheet.rel = "stylesheet" + if (localStorage["config.density.high"] === "on") stylesheet.rel = "alternate stylesheet" + }); + }); })(); -- cgit v1.2.3