mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
複数タブで開いてるときに動作がおかしい問題を修正
This commit is contained in:
parent
797e4c439a
commit
bcc20eab9d
1 changed files with 8 additions and 0 deletions
|
@ -136,6 +136,14 @@ document.body.innerHTML = '<div id="app"></div>';
|
|||
const os = new MiOS();
|
||||
|
||||
os.init(async () => {
|
||||
window.addEventListener('storage', e => {
|
||||
if (e.key === 'vuex') {
|
||||
os.store.replaceState(JSON.parse(localStorage['vuex']));
|
||||
} else if (e.key === 'i') {
|
||||
location.reload();
|
||||
}
|
||||
}, false)
|
||||
|
||||
if ('Notification' in window && os.store.getters.isSignedIn) {
|
||||
// 許可を得ていなかったらリクエスト
|
||||
if (Notification.permission === 'default') {
|
||||
|
|
Loading…
Reference in a new issue