diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-07-23 22:48:33 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-07-23 22:48:33 -0700 |
commit | 32680c58b895e4c781cfb2f51a97fbff42e111b0 (patch) | |
tree | 138be93793d6eeaec78a6dc3868e008a8395e93c /ext/bg/js/options.js | |
parent | edf1c0ff6d9eadd17c98f00ef027c27d1b89a8ee (diff) |
cleanup
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index d611ae59..ea52d337 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -126,6 +126,6 @@ function optionsSave(options) { return new Promise((resolve, reject) => { chrome.storage.local.set({options: JSON.stringify(options)}, resolve); }).then(() => { - instYomi().optionsSet(options); + apiOptionsSet(options); }); } |