mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
9 lines
232 B
JavaScript
9 lines
232 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();
|
|
}
|