diff options
Diffstat (limited to 'ext/fg/js')
| -rw-r--r-- | ext/fg/js/api.js | 4 | ||||
| -rw-r--r-- | ext/fg/js/frontend.js | 2 | 
2 files changed, 1 insertions, 5 deletions
| diff --git a/ext/fg/js/api.js b/ext/fg/js/api.js index 6bcb0dbb..aa3b2629 100644 --- a/ext/fg/js/api.js +++ b/ext/fg/js/api.js @@ -17,10 +17,6 @@   */ -function apiOptionsSet(options) { -    return utilInvoke('optionsSet', {options}); -} -  function apiOptionsGet() {      return utilInvoke('optionsGet');  } diff --git a/ext/fg/js/frontend.js b/ext/fg/js/frontend.js index 079a7ef2..52620933 100644 --- a/ext/fg/js/frontend.js +++ b/ext/fg/js/frontend.js @@ -261,7 +261,7 @@ class Frontend {      onBgMessage({action, params}, sender, callback) {          const handlers = { -            optionsSet: options => { +            optionsSet: ({options}) => {                  this.options = options;                  if (!this.options.enable) {                      this.searchClear(); |