We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9f7815 commit ce575e4Copy full SHA for ce575e4
1 file changed
html-components/ex/web-console-demo.html
@@ -3,19 +3,15 @@
3
<script src='https://libs.ext-code.com/js/dom/component/component.js'></script>
4
<script src='https://libs.ext-code.com/js/dom/init-hdr/init-hdr.js'></script>
5
6
-<web-console component></web-console>
+<web-console component id=console-1></web-console>
7
8
<script>
9
10
- async function init(){
+ function start(){
11
12
- webconsole = mod['web-console'];
+ mod['console-1'].log({hello:'world'});
13
14
- await mod.auto();
15
-
16
- webconsole.log('hello');
17
18
- }//init
+ }//start
19
20
</script>
21
0 commit comments