summaryrefslogtreecommitdiff
path: root/ext/bg/yomichan.js
diff options
context:
space:
mode:
authorAlex Yatskov <alex@foosoft.net>2016-04-03 22:22:38 -0700
committerAlex Yatskov <alex@foosoft.net>2016-04-03 22:22:38 -0700
commit44d2b5ec562febc2582bdd93f7f503a92099253f (patch)
tree64afdb21e4f606d5596212f9c82f6ae5be1ef485 /ext/bg/yomichan.js
parentaef347c67c2380614606296eb2ace6a40f3bd8a8 (diff)
Refactor
Diffstat (limited to 'ext/bg/yomichan.js')
-rw-r--r--ext/bg/yomichan.js11
1 files changed, 2 insertions, 9 deletions
diff --git a/ext/bg/yomichan.js b/ext/bg/yomichan.js
index 43ee8761..2e4552a1 100644
--- a/ext/bg/yomichan.js
+++ b/ext/bg/yomichan.js
@@ -19,20 +19,13 @@
class Yomichan {
constructor() {
- this.res = {
- rules: 'bg/data/rules.json',
- edict: 'bg/data/edict.csv',
- enamdict: 'bg/data/enamdict.csv',
- kanjidic: 'bg/data/kanjidic.csv'
- };
+ Handlebars.partials = Handlebars.templates;
this.translator = new Translator();
this.updateState('disabled');
chrome.runtime.onMessage.addListener(this.onMessage.bind(this));
chrome.browserAction.onClicked.addListener(this.onBrowserAction.bind(this));
-
- Handlebars.partials = Handlebars.templates;
}
onMessage(request, sender, callback) {
@@ -75,7 +68,7 @@ class Yomichan {
break;
case 'loading':
chrome.browserAction.setBadgeText({text: '...'});
- this.translator.loadData(this.res, () => this.updateState('enabled'));
+ this.translator.loadData(() => this.updateState('enabled'));
break;
}