mizzkey/src/client/scripts/unison-reload.ts
tamaina a7142f334c ✌️
2021-02-14 21:42:14 +09:00

11 lines
395 B
TypeScript

// SafariがBroadcastChannel未実装なのでライブラリを使う
import { BroadcastChannel } from 'broadcast-channel';
export const reloadChannel = new BroadcastChannel<'reload'>('reload');
// BroadcastChannelを用いて、クライアントが一斉にreloadするようにします。
export function unisonReload() {
reloadChannel.postMessage('reload');
location.reload();
}