mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-20 11:23:07 +09:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
onmessage = function() {
|
|
var a = new XMLHttpRequest();
|
|
a.open('GET', 'empty.html', false);
|
|
a.onreadystatechange = function() {
|
|
if (a.readyState == 4) {
|
|
postMessage(a.response);
|
|
}
|
|
}
|
|
a.send(null);
|
|
}
|