diff options
Diffstat (limited to 'ext/fg/js/driver.js')
-rw-r--r-- | ext/fg/js/driver.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/fg/js/driver.js b/ext/fg/js/driver.js index 036dc2d8..2324e6b2 100644 --- a/ext/fg/js/driver.js +++ b/ext/fg/js/driver.js @@ -116,8 +116,8 @@ window.driver = new class { } onBgMessage({action, params}, sender, callback) { - const handlers = new class { - optionsSet(options) { + const handlers = { + optionsSet: options => { this.options = options; if (!this.options.enable) { this.searchClear(); @@ -125,9 +125,9 @@ window.driver = new class { } }; - const method = handlers[action]; - if (typeof(method) === 'function') { - method.call(this, params); + const handler = handlers[action]; + if (handler) { + handler(params); } callback(); |