From 320fc8e86d114a29a05a7b05b6dc40323a3f2736 Mon Sep 17 00:00:00 2001 From: discomrade Date: Thu, 14 Oct 2021 21:03:28 -0100 Subject: [PATCH] Separate mod auto-update settings from normal settings --- js/mod/recent-posts-auto-reload.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/js/mod/recent-posts-auto-reload.js b/js/mod/recent-posts-auto-reload.js index 1c269c18..90ba9fdb 100644 --- a/js/mod/recent-posts-auto-reload.js +++ b/js/mod/recent-posts-auto-reload.js @@ -42,24 +42,24 @@ auto_reload_enabled = true; // for watch.js to interop $(document).ready(function(){ // Adds Options panel item - if (typeof localStorage.auto_recent_update === 'undefined') { - localStorage.auto_recent_update = 'true'; //default value + if (typeof localStorage.auto_recent_update_mod === 'undefined') { + localStorage.auto_recent_update_mod = 'true'; //default value } if (window.Options && Options.get_tab('general')) { Options.extend_tab("general", "
"+_("Auto update (recent)")+"" - + ('') - + ('') + + ('') + + ('') + '
'); - $('#auto-recent-update>input').on('click', function() { - if ($('#auto-recent-update>input').is(':checked')) { - localStorage.auto_recent_update = 'true'; + $('#auto-recent-update-mod>input').on('click', function() { + if ($('#auto-recent-update-mod>input').is(':checked')) { + localStorage.auto_recent_update_mod = 'true'; } else { - localStorage.auto_recent_update = 'false'; + localStorage.auto_recent_update_mod = 'false'; } }); - $('#auto_recent_desktop_notifications>input,#auto_recent_desktop_notifications_all>input').on('click', function() { + $('#auto_recent_desktop_notifications_all_mod>input').on('click', function() { if (!("Notification" in window)) return; var setting = $(this).parent().attr('id'); @@ -78,12 +78,12 @@ $(document).ready(function(){ } }); - if (localStorage.auto_recent_update === 'true') { - $('#auto-recent-update>input').prop('checked', true); + if (localStorage.auto_recent_update_mod === 'true') { + $('#auto-recent-update-mod>input').prop('checked', true); } - if (localStorage.auto_recent_desktop_notifications_all === 'true') { - $('#auto_recent_desktop_notifications_all>input').prop('checked', true); + if (localStorage.auto_recent_desktop_notifications_all_mod === 'true') { + $('#auto_recent_desktop_notifications_all_mod>input').prop('checked', true); notify = "all"; } } @@ -94,7 +94,7 @@ $(document).ready(function(){ $(".bar-bottom span:last-child").append("["+_("Update")+"] ( "+_("Auto")+") "); // Set the updater checkbox according to user setting - if (localStorage.auto_recent_update === 'true') { + if (localStorage.auto_recent_update_mod === 'true') { $('#auto_update_status').prop('checked', true); }