From 22070384b4731cf5f5ec7acad25cad732e7bad9f Mon Sep 17 00:00:00 2001 From: josephsmendoza Date: Fri, 25 Aug 2023 18:18:55 -0700 Subject: [PATCH] enable all events by default --- config.html | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/config.html b/config.html index 79982ee..3cbeed9 100644 --- a/config.html +++ b/config.html @@ -8,49 +8,49 @@







@@ -62,7 +62,7 @@
@@ -119,6 +119,9 @@ return {} } ).then(config=>{ + for(const checkbox of document.querySelectorAll('input[type=checkbox]')){ + checkbox.checked=false + } for(const key in config){ const input=document.querySelector('[name='+key+']') if(!input){