From 9fce12bdbb9e9ca6be01b7fa0f5d1cf90d14f1d8 Mon Sep 17 00:00:00 2001 From: TwistedUmbrellaX <1173913+AbandonedCart@users.noreply.github.com> Date: Sun, 24 Nov 2024 11:29:20 -0500 Subject: [PATCH] Allow existing settings to be bulk reset (#394) * Allow existing settings to be bulk reset * The box should also be checked ... so it can be unchecked * Only check for checked once --- IntroSkipper/Configuration/configPage.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/IntroSkipper/Configuration/configPage.html b/IntroSkipper/Configuration/configPage.html index d8124a3..36b41ca 100644 --- a/IntroSkipper/Configuration/configPage.html +++ b/IntroSkipper/Configuration/configPage.html @@ -1450,6 +1450,10 @@ persistSkipChanged(); generateAutoSkipTypeList(); generateAutoSkipClientList(); + const pluginSkip = document.getElementById("PluginSkip"); + pluginSkip.checked = pluginSkip.checked + || document.getElementById("AutoSkip").checked + || document.getElementById("SkipButtonEnabled").checked pluginSkipSettingChanged(); Dashboard.hideLoadingMsg();