Fix: close tabs on acct/settings

This commit is contained in:
Cutls 2019-10-05 01:57:53 +09:00
parent fffc94fbdd
commit 8f76c9b09d
2 changed files with 9 additions and 2 deletions

View File

@ -890,3 +890,7 @@ input.addEventListener("focus", function () {
input.addEventListener("blur", function () {
window.clearInterval(timer);
}, false);
//acctで未読マーカーは要らない
function asReadEnd() {
postMessage(["asReadComp", ""], "*")
}

View File

@ -694,4 +694,7 @@ window.onload = function () {
oksload();
ctLoad()
};
//設定画面で未読マーカーは要らない
function asReadEnd() {
postMessage(["asReadComp", ""], "*")
}