summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsiikamiika <siikamiika@users.noreply.github.com>2020-03-02 11:31:09 +0200
committersiikamiika <siikamiika@users.noreply.github.com>2020-03-02 11:31:09 +0200
commit56b2f2c853494b228aa4467a64ed91486432bffd (patch)
treeece8a42926f4860bfed16285e9f26996bc190228
parente0edb30efd51ac18167880d77c2dea11c73a1bfc (diff)
trigger yomichanCoreReady only when preparing
-rw-r--r--ext/mixed/js/core.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mixed/js/core.js b/ext/mixed/js/core.js
index b7ac8743..0e22b9ac 100644
--- a/ext/mixed/js/core.js
+++ b/ext/mixed/js/core.js
@@ -280,12 +280,12 @@ const yomichan = (() => {
]);
chrome.runtime.onMessage.addListener(this._onMessage.bind(this));
- chrome.runtime.sendMessage({action: 'yomichanCoreReady'});
}
// Public
prepare() {
+ chrome.runtime.sendMessage({action: 'yomichanCoreReady'});
return this._isBackendPreparedPromise;
}