diff --git a/4chan_x.user.js b/4chan_x.user.js index 6cc3c3545..970ba72cd 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1574,6 +1574,7 @@ } } else if (input.name === 'Interval') { $.bind(input, 'change', updater.cb.interval); + $.bind(input, 'change', $.cb.value); } else if (input.type === 'button') { $.bind(input, 'click', updater.updateNow); } diff --git a/changelog b/changelog index 2fa1a4866..e2c38d237 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,7 @@ github - mayhem: - Make updater's settings dynamic + - fix remember updater's interval settings 2.16.1 - mayhem: diff --git a/script.coffee b/script.coffee index eb3bfe406..8a7aa2238 100644 --- a/script.coffee +++ b/script.coffee @@ -1276,6 +1276,7 @@ updater = updater.cb.autoUpdate.call input else if input.name is 'Interval' $.bind input, 'change', updater.cb.interval + $.bind input, 'change', $.cb.value else if input.type is 'button' $.bind input, 'click', updater.updateNow