From 50ca8ab5bfff79780b053cd473475c5591255969 Mon Sep 17 00:00:00 2001 From: Flo Greistorfer Date: Sat, 5 Jul 2025 22:50:11 +0200 Subject: [PATCH] fixed reset not unchecking recursive --- .hintrc | 10 +++++++++- templates/functionality.js | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.hintrc b/.hintrc index 798957b..22fd1e4 100644 --- a/.hintrc +++ b/.hintrc @@ -3,6 +3,14 @@ "development" ], "hints": { - "apple-touch-icons": "off" + "apple-touch-icons": "off", + "compat-api/css": [ + "default", + { + "ignore": [ + "-webkit-app-region" + ] + } + ] } } \ No newline at end of file diff --git a/templates/functionality.js b/templates/functionality.js index 61d4a85..6a49ac5 100644 --- a/templates/functionality.js +++ b/templates/functionality.js @@ -76,6 +76,7 @@ class PhotoGallery { const title = document.title; const folders = document.querySelector(".folders"); if (folders) folders.style.display = ""; + document.getElementById("recursive").checked = false; document .querySelectorAll("#tagdropdown input.tagcheckbox:checked") .forEach((checkbox) => (checkbox.checked = false));