diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-03-26 22:42:17 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-03-26 22:42:17 -0700 |
commit | 3b0aa88de11427c841f85e860aef91ff5d5c793d (patch) | |
tree | a04266ff528dbf9ce19f7ab1ceb9ffe0ee5f6c29 /ext/fg/js/display-frame.js | |
parent | 5de3005d0b9ce8dc30e6e1d8d869c57876ca136f (diff) |
cleanup
Diffstat (limited to 'ext/fg/js/display-frame.js')
-rw-r--r-- | ext/fg/js/display-frame.js | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/ext/fg/js/display-frame.js b/ext/fg/js/display-frame.js index 41c2fb53..59032d0c 100644 --- a/ext/fg/js/display-frame.js +++ b/ext/fg/js/display-frame.js @@ -57,23 +57,24 @@ window.displayFrame = new class extends Display { } onMessage(e) { - const handlers = new class { - showTermDefs({definitions, options, context}) { + const handlers = { + showTermDefs: ({definitions, options, context}) => { this.showTermDefs(definitions, options, context); - } + }, - showKanjiDefs({definitions, options, context}) { + showKanjiDefs: ({definitions, options, context}) => { this.showKanjiDefs(definitions, options, context); - } + }, - showOrphaned() { + showOrphaned: () => { this.showOrphaned(); } }; - const {action, params} = e.originalEvent.data, method = handlers[action]; - if (typeof(method) === 'function') { - method.call(this, params); + const {action, params} = e.originalEvent.data; + const handler = handlers[action]; + if (handler) { + handler(params); } } }; |