diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-03-04 18:24:57 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-03-04 18:24:57 -0800 |
commit | 30999c13d32e7f111db16814dc2cbb0f30825861 (patch) | |
tree | 3aa24f7045f10237aa744651844d18219d1890e6 /ext/bg/js/options.js | |
parent | b039d300249087aee18c7e8565ae7447d2cf5b15 (diff) |
wip
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index 565ccd41..f06cc056 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -189,7 +189,7 @@ function onDictionaryPurge(e) { options.dictionaries = {}; return optionsSave(options).then(() => { populateDictionaries(options); - instYomi().setOptions(options); + instYomi().optionsSet(options); }); }); } @@ -208,7 +208,7 @@ function onDictionaryImport() { optionsLoad().then(options => { instDb().importDictionary(dictUrl.val(), (total, current) => setProgress(current / total * 100.0)).then(summary => { options.dictionaries[summary.title] = {enabled: true, priority: 0}; - return optionsSave(options).then(() => instYomi().setOptions(options)); + return optionsSave(options).then(() => instYomi().optionsSet(options)); }).then(() => populateDictionaries(options)).catch(showDictionaryError).then(() => { showDictionarySpinner(false); dictProgress.hide(); @@ -339,7 +339,7 @@ function onAnkiModelChanged(e) { optionsNew.anki[tabId].fields = {}; populateAnkiFields(element, optionsNew).then(() => { - optionsSave(optionsNew).then(() => instYomi().setOptions(optionsNew)); + optionsSave(optionsNew).then(() => instYomi().optionsSet(optionsNew)); }).catch(showAnkiError).then(() => showAnkiSpinner(false)); }); } @@ -351,7 +351,7 @@ function onOptionsChanged(e) { getFormData().then(({optionsNew, optionsOld}) => { return optionsSave(optionsNew).then(() => { - instYomi().setOptions(optionsNew); + instYomi().optionsSet(optionsNew); updateVisibility(optionsNew); const ankiUpdated = |