diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-01 14:41:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 14:41:48 -0500 |
commit | a4b0a556d48f2b0ae4208f69fa651d2370529db5 (patch) | |
tree | 5a304f9be64829e07d311bbf51871aeda28fe10b /ext/mixed/js/api.js | |
parent | 7c615244f40222584984157223944e6aa6448d13 (diff) | |
parent | 8e29da0c6bd0b80dc6c9e37a525a37258518c293 (diff) |
Merge pull request #380 from toasted-nutbread/anki-templates-file
Load default Anki field templates from a file
Diffstat (limited to 'ext/mixed/js/api.js')
-rw-r--r-- | ext/mixed/js/api.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/mixed/js/api.js b/ext/mixed/js/api.js index 7ea68d59..26f4389d 100644 --- a/ext/mixed/js/api.js +++ b/ext/mixed/js/api.js @@ -117,6 +117,10 @@ function apiGetMessageToken() { return _apiInvoke('getMessageToken'); } +function apiGetDefaultAnkiFieldTemplates() { + return _apiInvoke('getDefaultAnkiFieldTemplates'); +} + function _apiInvoke(action, params={}) { const data = {action, params}; return new Promise((resolve, reject) => { |