mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-08 16:30:29 +00:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
onmessage = function(event) {
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.open("GET", event.data, false);
|
|
xhr.send();
|
|
xhr.open("GET", event.data, false);
|
|
xhr.send();
|
|
postMessage("done");
|
|
}
|