mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
onmessage = function() {
|
|
var counter = 0;
|
|
var id = setInterval(function() {
|
|
++counter;
|
|
if (counter == 2) {
|
|
clearInterval(id);
|
|
postMessage('done');
|
|
}
|
|
}, 0);
|
|
}
|