mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-01 15:29:25 +00:00
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
"use strict";
|
|
|
|
onconnect = function (event) {
|
|
event.ports[0].onmessage = function (event) {
|
|
switch (event.data) {
|
|
case "close":
|
|
close();
|
|
break;
|
|
}
|
|
};
|
|
};
|