mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
5 lines
128 B
JavaScript
5 lines
128 B
JavaScript
|
|
(new BroadcastChannel('foobar')).onmessage = function(event) {
|
||
|
|
event.target.postMessage(event.data);
|
||
|
|
}
|
||
|
|
|
||
|
|
postMessage("READY");
|