mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 05:13:07 +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);
|
|
});
|
|
}
|
|
|