mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
11 lines
185 B
JavaScript
11 lines
185 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
self.onconnect = function (event) {
|
||
|
|
event.ports[0].onmessage = function (event) {
|
||
|
|
switch (event.data) {
|
||
|
|
case "close":
|
||
|
|
close();
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
};
|