1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-25 01:38:46 +00:00
Files
UXP/dom/workers/test/sharedWorker_lifetime.js
T

6 lines
109 B
JavaScript

onconnect = function(e) {
setTimeout(function() {
e.ports[0].postMessage("Still alive!");
}, 500);
}