From 335d611e577c2e7f895125012574bdc52bc110f0 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Mon, 21 Mar 2022 13:57:05 +0100 Subject: [PATCH] remove error log from first time sync --- src/background.js | 2 +- src/popup.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/background.js b/src/background.js index 617b278..571edd5 100644 --- a/src/background.js +++ b/src/background.js @@ -154,4 +154,4 @@ chrome.runtime.onMessage.addListener((data, sender, sendResponse) => { }) // At browser start, sync with wanikani -sync().then(value => console.log(value)).catch(reason => console.error(reason)) \ No newline at end of file +sync().then(value => console.log(value)).catch(reason => {}) \ No newline at end of file diff --git a/src/popup.js b/src/popup.js index ad04d2b..965ccb1 100644 --- a/src/popup.js +++ b/src/popup.js @@ -47,8 +47,9 @@ chrome.storage.local.get(["level", "token", "enabled", "enabledVocab", "enabledK kanjiSetting.checked = data.enabledKanji }) -// Set the wanikani token +// Submit button pressed submitButton.addEventListener( "click", () => { + // If the submit field has a new token, replace the current one with it if(submitButton.classList.contains("new-token")) { chrome.storage.local.set({"token": inputField.value}) @@ -61,6 +62,7 @@ submitButton.addEventListener( "click", () => { statusField.innerHTML = String.fromCodePoint(0x23F1) + // Sync with wanikani chrome.runtime.sendMessage("", {type: "sync"}, response => { if(response.success) {