mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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);
|
|
}
|