mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-19 14:39:16 +00:00
11 lines
188 B
JavaScript
11 lines
188 B
JavaScript
onmessage = function() {
|
|
var counter = 0;
|
|
var id = setInterval(function() {
|
|
++counter;
|
|
if (counter == 2) {
|
|
clearInterval(id);
|
|
postMessage('done');
|
|
}
|
|
}, 0);
|
|
}
|