diff --git a/puppet/ha-puppet/html/index.html b/puppet/ha-puppet/html/index.html
index b14020b..0a7240a 100644
--- a/puppet/ha-puppet/html/index.html
+++ b/puppet/ha-puppet/html/index.html
@@ -244,17 +244,17 @@
/>
-
+
-
-
-
-
-
-
-
-
-
-
-
-
- Add extra wait time before capturing the screenshot. Useful
- if you have animations or lazy-loaded content.
-
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Format
-
-
+
+
+
-
+ Add extra wait time before capturing the screenshot. Useful
+ if you have animations or lazy-loaded content.
+
+
+
+
+
+
+
@@ -968,6 +996,20 @@
}
}
+ // Toggle e-ink settings accordion
+ function toggleEink() {
+ const einkSettings = document.getElementById("einkSettings");
+ const einkIcon = document.getElementById("einkIcon");
+
+ if (einkSettings.classList.contains("hidden")) {
+ einkSettings.classList.remove("hidden");
+ einkIcon.style.transform = "rotate(180deg)";
+ } else {
+ einkSettings.classList.add("hidden");
+ einkIcon.style.transform = "rotate(0deg)";
+ }
+ }
+
// Toggle advanced settings accordion
function toggleAdvanced() {
const advancedSettings = document.getElementById("advancedSettings");