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/popup-main.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/popup-main.js')
-rw-r--r-- | ext/js/display/popup-main.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/js/display/popup-main.js b/ext/js/display/popup-main.js index f1228aa6..24be6c01 100644 --- a/ext/js/display/popup-main.js +++ b/ext/js/display/popup-main.js @@ -21,7 +21,6 @@ * DocumentFocusController * HotkeyHandler * JapaneseUtil - * api */ (async () => { @@ -29,10 +28,9 @@ const documentFocusController = new DocumentFocusController(); documentFocusController.prepare(); - api.prepare(); await yomichan.prepare(); - const {tabId, frameId} = await api.frameInformationGet(); + const {tabId, frameId} = await yomichan.api.frameInformationGet(); const japaneseUtil = new JapaneseUtil(null); |