diff options
author | Ajay <[email protected]> | 2024-11-26 02:25:52 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2024-11-26 02:25:52 -0500 |
commit | 61f1a8918c4bd92f722c7cfa048f82a18fd0edb5 (patch) | |
tree | c237351f175dc225f03ab9a3eb931f1fce23962e | |
parent | 3a488a9110be1c3d33edc09aa5cbf3450742837f (diff) | |
download | SponsorBlock-61f1a8918c4bd92f722c7cfa048f82a18fd0edb5.tar.gz SponsorBlock-61f1a8918c4bd92f722c7cfa048f82a18fd0edb5.zip |
Fix upcoming notice toggles on options page
-rw-r--r-- | public/options/options.html | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/public/options/options.html b/public/options/options.html index 2a19599c..4af92937 100644 --- a/public/options/options.html +++ b/public/options/options.html @@ -209,7 +209,7 @@ <div class="small-description">__MSG_skipNoticeDurationDescription__</div> </div> - <div data-type="toggle" data-toggle-type="reverse" data-sync="dontShowNotice"> + <div> <div data-type="toggle" data-sync="showUpcomingNotice"> <div class="switch-container"> <label class="switch"> @@ -224,14 +224,16 @@ <br/> - <div class="switch-container"> - <label class="switch"> - <input id="dontShowNotice" type="checkbox" checked> - <span class="slider round"></span> - </label> - <label class="switch-label" for="dontShowNotice"> - __MSG_showSkipNotice__ - </label> + <div data-type="toggle" data-toggle-type="reverse" data-sync="dontShowNotice"> + <div class="switch-container"> + <label class="switch"> + <input id="dontShowNotice" type="checkbox" checked> + <span class="slider round"></span> + </label> + <label class="switch-label" for="dontShowNotice"> + __MSG_showSkipNotice__ + </label> + </div> </div> <div data-type="selector" data-sync="noticeVisibilityMode" data-dependent-on="dontShowNotice"> |