9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
onmessage = function () {
|
|
importScripts(["referrer.sjs?import"]);
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open("GET", "referrer.sjs?result", true);
|
|
xhr.onload = function () {
|
|
postMessage(xhr.responseText);
|
|
};
|
|
xhr.send();
|
|
};
|