From 49b603c7561c1f39cd79c969e00b6069cedb2397 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sun, 14 Mar 2021 22:51:48 -0400 Subject: Remove old settings page (#1524) * Remove old settings page * Remove spinner.gif --- ext/js/data/options-util.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'ext/js/data/options-util.js') diff --git a/ext/js/data/options-util.js b/ext/js/data/options-util.js index c31ae680..334445c6 100644 --- a/ext/js/data/options-util.js +++ b/ext/js/data/options-util.js @@ -458,7 +458,8 @@ class OptionsUtil { {async: true, update: this._updateVersion6.bind(this)}, {async: false, update: this._updateVersion7.bind(this)}, {async: true, update: this._updateVersion8.bind(this)}, - {async: false, update: this._updateVersion9.bind(this)} + {async: false, update: this._updateVersion9.bind(this)}, + {async: false, update: this._updateVersion10.bind(this)} ]; } @@ -748,4 +749,11 @@ class OptionsUtil { } return options; } + + _updateVersion10(options) { + // Version 10 changes: + // Removed global option useSettingsV2. + delete options.global.useSettingsV2; + return options; + } } -- cgit v1.2.3