diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-14 15:53:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 15:53:35 -0500 |
commit | 286534e648af350d24fbf3c7892a7ec81aaeb4bd (patch) | |
tree | 89d88e961c5a0a6f508c66789e30b9ba4a968e73 /ext/js/display/search-display-controller.js | |
parent | efe8140f103179f50b610f182148b9427af99010 (diff) |
Move api to yomichan object (#1392)
* Move cross frame API from API to Yomichan
* Add API instance to Yomichan
* Move api global to yomichan.api
* Pass yomichan to API
* Remove IIFE
Diffstat (limited to 'ext/js/display/search-display-controller.js')
-rw-r--r-- | ext/js/display/search-display-controller.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ext/js/display/search-display-controller.js b/ext/js/display/search-display-controller.js index a295346d..3b48af44 100644 --- a/ext/js/display/search-display-controller.js +++ b/ext/js/display/search-display-controller.js @@ -17,7 +17,6 @@ /* global * ClipboardMonitor - * api * wanakana */ @@ -40,7 +39,7 @@ class SearchDisplayController { this._clipboardMonitor = new ClipboardMonitor({ japaneseUtil, clipboardReader: { - getText: async () => (await api.clipboardGet()) + getText: async () => (await yomichan.api.clipboardGet()) } }); this._messageHandlers = new Map(); @@ -201,7 +200,7 @@ class SearchDisplayController { _onWanakanaEnableChange(e) { const value = e.target.checked; this._setWanakanaEnabled(value); - api.modifySettings([{ + yomichan.api.modifySettings([{ action: 'set', path: 'general.enableWanakana', value, @@ -301,7 +300,7 @@ class SearchDisplayController { if (!modify) { return; } - await api.modifySettings([{ + await yomichan.api.modifySettings([{ action: 'set', path: 'clipboard.enableSearchPageMonitor', value, |