diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-11 20:20:53 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-13 23:11:56 -0500 |
commit | 17277a645020bf13bef9aaf1c1292f2b1a7cea02 (patch) | |
tree | 6ed6198703d541948b061d85a74e3de64552494a /ext/bg/js/settings/main.js | |
parent | ce51fe7eca2e893c8631c62ccb39ce3921ad1b6b (diff) |
Remove getOptionsArray
Diffstat (limited to 'ext/bg/js/settings/main.js')
-rw-r--r-- | ext/bg/js/settings/main.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/bg/js/settings/main.js b/ext/bg/js/settings/main.js index 0fd9cb23..c5298dd4 100644 --- a/ext/bg/js/settings/main.js +++ b/ext/bg/js/settings/main.js @@ -16,11 +16,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -async function getOptionsArray() { - const optionsFull = await apiOptionsGetFull(); - return optionsFull.profiles.map((profile) => profile.options); -} - async function formRead(options) { options.general.enable = $('#enable').prop('checked'); options.general.showGuide = $('#show-usage-guide').prop('checked'); |