mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +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;
|
||
|
|
}
|
||
|
|
};
|