diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-08-15 21:36:30 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-08-15 21:36:30 -0700 |
commit | e19933f9804abf4e64d96143bbb58f8059de5b38 (patch) | |
tree | 97a4f486203b06be4281fff20ad0dc81aa770dce /ext/mixed/js/display.js | |
parent | e079e5f252ee39b222f3eb78e81d0a6bab6626d2 (diff) |
jisho.org audio support
Diffstat (limited to 'ext/mixed/js/display.js')
-rw-r--r-- | ext/mixed/js/display.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/mixed/js/display.js b/ext/mixed/js/display.js index 21748f5d..12950dfd 100644 --- a/ext/mixed/js/display.js +++ b/ext/mixed/js/display.js @@ -27,7 +27,6 @@ class Display { this.sequence = 0; this.index = 0; this.audioCache = {}; - this.responseCache = {}; $(document).keydown(this.onKeyDown.bind(this)); } @@ -368,7 +367,7 @@ class Display { try { this.spinner.show(); - let url = await audioBuildUrl(definition, this.options.general.audioSource, this.responseCache); + let url = await apiAudioGetUrl(definition, this.options.general.audioSource); if (!url) { url = '/mixed/mp3/button.mp3'; } |