Skip to content

Commit 552e55f

Browse files
save file
1 parent 56d255d commit 552e55f

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

blog/25-07-29/deploy-cloud-run-service/deploy-cloud-run-service.html

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@
6262
var ace;
6363

6464
var menu;
65-
65+
66+
var hdr;
6667
var example;
67-
6868
var log;
6969

7070

@@ -77,14 +77,16 @@
7777
menu = menumod();
7878

7979

80-
80+
hdr = mod['blog-hdr'];
8181
example = mod.example;
82-
log = mod.log;
82+
log = mod['log-mod'];
8383

84+
hdr.initmod({ext,$});
8485
example.initmod({ext,$,menu,ace});
8586
log.initmod({ext,$});
8687

8788
await Promise.all([
89+
hdr.init(),
8890
example.init(),
8991
log.init(),
9092
]);
@@ -192,7 +194,7 @@
192194
<body>
193195

194196

195-
<blog-hdr component=grp1 v2.0>
197+
<blog-hdr component=grp1>
196198
<h1 class=title>
197199
Deploy Cloud Run Service
198200
</h1>
@@ -220,10 +222,10 @@ <h1 class=title>
220222
</div>
221223

222224

223-
<editor id=example component v2.0 src='ex/ex.js'></editor>
225+
<web-editor id=example src='ex/ex.js' component></web-editor>
224226

225227

226-
<log component v2.0></log>
228+
<log-mod component></log-mod>
227229

228230

229231
</body>
@@ -234,6 +236,9 @@ <h1 class=title>
234236

235237
function initdom(rootnode){
236238

239+
var root = rootnode;
240+
241+
hdr.initdom();
237242
example.initdom({fullsize:true});
238243
log.initdom();
239244

0 commit comments

Comments
 (0)