diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-07-18 17:11:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-18 17:11:38 -0400 |
commit | d7f78c23b50218eaa52ab4570a1e2297c52c287e (patch) | |
tree | 64a217ccc1f96efeec3c81e1d16215963536c733 /ext/bg/js/context-main.js | |
parent | e696dc84a857e60adcfa7feec44398765c430cac (diff) |
Script ready state change (#672)
* Update how backend/frontend ready states are awaited and signaled
* Log errors on the search page
* Update action name
Diffstat (limited to 'ext/bg/js/context-main.js')
-rw-r--r-- | ext/bg/js/context-main.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/bg/js/context-main.js b/ext/bg/js/context-main.js index 6d17dbf7..14013d3f 100644 --- a/ext/bg/js/context-main.js +++ b/ext/bg/js/context-main.js @@ -76,7 +76,7 @@ async function setupOptions() { (async () => { api.forwardLogsToBackend(); - await yomichan.ready(); + await yomichan.backendReady(); const manifest = chrome.runtime.getManifest(); @@ -87,4 +87,6 @@ async function setupOptions() { setupButtonEvents('.action-open-search', 'search', chrome.runtime.getURL('/bg/search.html')); setupButtonEvents('.action-open-options', 'options', chrome.runtime.getURL(manifest.options_ui.page)); setupButtonEvents('.action-open-help', 'help', 'https://foosoft.net/projects/yomichan/'); + + yomichan.ready(); })(); |