mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-04 07:29:07 +00:00
8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
onconnect = function(evt) {
|
|
evt.ports[0].onmessage = function(e) {
|
|
var blob = new Blob(['123'], { type: 'text/plain' });
|
|
var url = URL.createObjectURL(blob);
|
|
evt.ports[0].postMessage('alive \\o/');
|
|
};
|
|
}
|