forked from LeenkxTeam/Kmake
9 lines
205 B
HTML
9 lines
205 B
HTML
<script>
|
|
const bc1 = new BroadcastChannel("ladila"),
|
|
bc2 = new BroadcastChannel("ladila");
|
|
bc2.onmessage = e => {
|
|
parent.postMessage(e.origin, "*");
|
|
}
|
|
bc1.postMessage("does not matter");
|
|
</script>
|