diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-09 21:29:48 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2019-12-13 23:11:56 -0500 |
commit | 5a743505528cc2cc96ab6bf41a7460c75f6c084c (patch) | |
tree | 9fad0b9579e8909e806abec0d9a082f77bde020c /ext/bg/js | |
parent | 233ed4d0fb32291d9ba3f9b0a358496bf1093fb4 (diff) |
Move apiNoteView implementation into Backend
Diffstat (limited to 'ext/bg/js')
-rw-r--r-- | ext/bg/js/api.js | 4 | ||||
-rw-r--r-- | ext/bg/js/backend.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/bg/js/api.js b/ext/bg/js/api.js index 497d81bf..9de1fb4b 100644 --- a/ext/bg/js/api.js +++ b/ext/bg/js/api.js @@ -57,8 +57,8 @@ function apiDefinitionsAddable(definitions, modes, optionsContext) { return utilBackend()._onApiDefinitionsAddable({definitions, modes, optionsContext}); } -async function apiNoteView(noteId) { - return utilBackend().anki.guiBrowse(`nid:${noteId}`); +function apiNoteView(noteId) { + return utilBackend()._onApiNoteView({noteId}); } async function apiTemplateRender(template, data, dynamic) { diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 77dc0d33..4db88365 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -385,8 +385,8 @@ class Backend { return states; } - _onApiNoteView({noteId}) { - return apiNoteView(noteId); + async _onApiNoteView({noteId}) { + return this.anki.guiBrowse(`nid:${noteId}`); } _onApiTemplateRender({template, data, dynamic}) { |