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/backend.js | |
parent | 233ed4d0fb32291d9ba3f9b0a358496bf1093fb4 (diff) |
Move apiNoteView implementation into Backend
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 4 |
1 files changed, 2 insertions, 2 deletions
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}) { |