Skip to content

Commit 3bd49b9

Browse files
save file
1 parent 24c0f0c commit 3bd49b9

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

utils/misc/nodejs-terminal/nodejs-terminal.html

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,10 @@
123123
]);
124124

125125

126-
initdom();
126+
await initdom();
127+
128+
129+
misc.complete();
127130

128131

129132

@@ -240,7 +243,7 @@
240243
<body>
241244

242245

243-
<misc-hdr component=grp>
246+
<misc-hdr v2.0 component=grp>
244247
<help-file component=grp_root src='docs/nodejs-terminal-help.md'></help-file>
245248
<img slot=title class=title src='images/nodejs-terminal.png' style='top:-25px;height:80px' alt='Node.js Terminal'>
246249
<time slot=date datetime=2026-05-13>
@@ -421,14 +424,16 @@
421424
debug('initdom');
422425
await vm.initdom();
423426

424-
await misc.initdom();
427+
await Promise.all([
428+
misc.initdom(),
429+
help.initdom(),
430+
filemod.initdom(),
431+
tabs.initdom(),
432+
wcfs.initdom(),
433+
ports.initdom(),
434+
log.initdom(),
435+
]);
425436
misc.set.version(version);
426-
await help.initdom();
427-
await filemod.initdom();
428-
await tabs.initdom();
429-
await wcfs.initdom();
430-
await ports.initdom();
431-
await log.initdom();
432437

433438

434439
var more = $('#more-menu');

0 commit comments

Comments
 (0)