diff options
| author | Alex Yatskov <alex@foosoft.net> | 2016-08-29 20:27:04 -0700 | 
|---|---|---|
| committer | Alex Yatskov <alex@foosoft.net> | 2016-08-29 20:27:04 -0700 | 
| commit | 133abb6f585bee94fcdee23689779042e3ccfd65 (patch) | |
| tree | 6093341a1368e184a6d5fcb36a698711e68f6dee | |
| parent | c55ba3b2be267d9dc616bda1a293d136c63cd639 (diff) | |
.
| -rw-r--r-- | ext/bg/js/translator.js | 10 | 
1 files changed, 3 insertions, 7 deletions
| diff --git a/ext/bg/js/translator.js b/ext/bg/js/translator.js index f7dfae13..5768c3d6 100644 --- a/ext/bg/js/translator.js +++ b/ext/bg/js/translator.js @@ -31,13 +31,13 @@ class Translator {              return;          } -        loadJson('bg/data/rules.json').then((rules) => { +        loadJson('bg/data/rules.json').then(rules => {              this.deinflector.setRules(rules);              return loadJson('bg/data/tags.json'); -        }).then((tagMeta) => { +        }).then(tagMeta => {              this.tagMeta = tagMeta;              return this.dictionary.existsDb(); -        }).then((exists) => { +        }).then(exists => {              this.dictionary.initDb();              if (exists) {                  return Promise.resolve(); @@ -49,10 +49,6 @@ class Translator {                  this.dictionary.importTermDict('bg/data/enamdict/index.json')              ]);          }).then(() => { -            this.dictionary.findTerm('猫').then((result) => { -                console.log(result); -            }); -              this.loaded = true;              callback();          }); |