mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
9 lines
132 B
JavaScript
9 lines
132 B
JavaScript
|
|
"use strict"
|
||
|
|
|
||
|
|
this.onmessage = function (event) {
|
||
|
|
switch (event.data) {
|
||
|
|
case "ping":
|
||
|
|
postMessage("pong");
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
};
|