mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
13 lines
255 B
JavaScript
13 lines
255 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
/* exported waitForLoad */
|
||
|
|
|
||
|
|
function waitForLoad(win) {
|
||
|
|
return new Promise(resolve => {
|
||
|
|
win.addEventListener("load", function listener() {
|
||
|
|
win.removeEventListener("load", listener, true);
|
||
|
|
resolve();
|
||
|
|
}, true);
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|