mirror of
https://github.com/greflm13/StaticGalleryBuilder.git
synced 2026-02-05 02:59:27 +00:00
fixed reset not unchecking recursive
This commit is contained in:
10
.hintrc
10
.hintrc
@@ -3,6 +3,14 @@
|
||||
"development"
|
||||
],
|
||||
"hints": {
|
||||
"apple-touch-icons": "off"
|
||||
"apple-touch-icons": "off",
|
||||
"compat-api/css": [
|
||||
"default",
|
||||
{
|
||||
"ignore": [
|
||||
"-webkit-app-region"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user