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/bg/js/backend.js | |
parent | e079e5f252ee39b222f3eb78e81d0a6bab6626d2 (diff) |
jisho.org audio support
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 6c77ba7e..9602d385 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -110,6 +110,10 @@ class Backend { commandExec: ({command, callback}) => { forward(apiCommandExec(command), callback); + }, + + audioGetUrl: ({definition, source, callback}) => { + forward(apiAudioGetUrl(definition, source), callback); } }; |