diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-03-27 20:00:41 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-03-27 20:00:41 -0700 |
commit | a9fcc0cde6a09872e038e4aa4600d5cd80a71374 (patch) | |
tree | 3bd6e00e2c8eec94218636f554db2f2663141569 /ext/bg/yomichan.js | |
parent | 2bdb5763780e68889b355200a60844da83d3ede7 (diff) |
Switch to handlebars for templating
Diffstat (limited to 'ext/bg/yomichan.js')
-rw-r--r-- | ext/bg/yomichan.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ext/bg/yomichan.js b/ext/bg/yomichan.js index 9a049f77..d845661f 100644 --- a/ext/bg/yomichan.js +++ b/ext/bg/yomichan.js @@ -19,7 +19,6 @@ class Yomichan { constructor() { - this.translator = new Translator(); this.res = { rules: 'bg/data/rules.json', edict: 'bg/data/edict.json', @@ -27,6 +26,7 @@ class Yomichan { kanjidic: 'bg/data/kanjidic.json' }; + this.translator = new Translator(); this.updateState('disabled'); chrome.runtime.onMessage.addListener(this.onMessage.bind(this)); @@ -36,9 +36,10 @@ class Yomichan { onMessage(request, sender, callback) { const {action, data} = request; const handler = { - findKanji: ({text}) => this.translator.onFindKanji(text), - findTerm: ({text}) => this.translator.findTerm(text), - getState: () => this.state + findKanji: ({text}) => this.translator.onFindKanji(text), + findTerm: ({text}) => this.translator.findTerm(text), + getState: () => this.state, + renderTemplate: ({data, template}) => Handlebars.templates[template](data) }[action]; if (handler !== null) { |