diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-26 13:41:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 13:41:26 -0400 |
commit | 0b51488f1f639885b518fabf683b70db577afa67 (patch) | |
tree | 5fca858efdecb345e8bcabec5ff4f727c7f1dc20 /ext/mixed/js/api.js | |
parent | 22932e02cbd1fb16d0180c79a3c9b4d1790fbfda (diff) |
Audio system refactor (#858)
* Refactor AudioUriBuilder
* Add downloadAudio function
* Refactor AudioSystem
* Update API usage
* Rename file
* Update scripts
* Add prepare calls
Diffstat (limited to 'ext/mixed/js/api.js')
-rw-r--r-- | ext/mixed/js/api.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/mixed/js/api.js b/ext/mixed/js/api.js index 1973ca22..f7711cbd 100644 --- a/ext/mixed/js/api.js +++ b/ext/mixed/js/api.js @@ -85,8 +85,12 @@ const api = (() => { return this._invoke('noteView', {noteId}); } - audioGetUri(source, expression, reading, details) { - return this._invoke('audioGetUri', {source, expression, reading, details}); + getDefinitionAudioInfo(source, expression, reading, details) { + return this._invoke('getDefinitionAudioInfo', {source, expression, reading, details}); + } + + downloadDefinitionAudio(sources, expression, reading, details) { + return this._invoke('downloadDefinitionAudio', {sources, expression, reading, details}); } commandExec(command, params) { @@ -189,10 +193,6 @@ const api = (() => { return this._invoke('isTabSearchPopup', {tabId}); } - getDefinitionAudio(sources, expression, reading, details) { - return this._invoke('getDefinitionAudio', {sources, expression, reading, details}); - } - triggerDatabaseUpdated(type, cause) { return this._invoke('triggerDatabaseUpdated', {type, cause}); } |