aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authortdro <tdro@noreply.example.com>2024-02-09 19:00:31 -0500
committertdro <tdro@noreply.example.com>2024-02-09 19:00:31 -0500
commita0e27279c740611b7a6a47a6a419abbb1559ae6c (patch)
treefb791df54cf931163bcadf70c77b0756b015950d /assets
parent565847b63d5ee98c04ea9e30deaa91bf35cc3880 (diff)
downloadcanory-a0e27279c740611b7a6a47a6a419abbb1559ae6c.tar.gz
canory-a0e27279c740611b7a6a47a6a419abbb1559ae6c.tar.bz2
canory-a0e27279c740611b7a6a47a6a419abbb1559ae6c.zip
static/js/forms: Activate on storage + DOM load
Always expose alternate stylesheets
Diffstat (limited to 'assets')
-rw-r--r--assets/js/index.js13
1 files changed, 9 insertions, 4 deletions
diff --git a/assets/js/index.js b/assets/js/index.js
index e80d794..9374f5d 100644
--- a/assets/js/index.js
+++ b/assets/js/index.js
@@ -720,10 +720,15 @@
}
});
});
- self.addEventListener("storage", 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";
+ [
+ "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";
+ });
});
})();
(function() {