We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6383119 commit b0cc98eCopy full SHA for b0cc98e
1 file changed
utils/misc/fetch/fetch.html
@@ -99,7 +99,10 @@
99
//menumod.on.close = focus;
100
101
102
- initdom(document.body);
+ await initdom(document.body);
103
+
104
105
+ hdr.complete();
106
107
108
}//init
@@ -341,7 +344,7 @@
341
344
//:
342
345
343
346
- function initdom(rootnode){
347
+ async function initdom(rootnode){
348
349
root = rootnode;
350
@@ -363,10 +366,10 @@
363
366
hdrs.item.remove();
364
367
365
368
- filemod.initdom(root);
-
369
- log.initdom(root);
+ await Promise.all([
370
+ filemod.initdom(),
371
+ log.initdom(),
372
+ ]);
373
374
375
}//initdom
0 commit comments