v0.0.10: Attempt to fix a bug, and added callback in customElement to trigger code after-render (renderCallback, in analogy with CustomElement's callbacks)

This commit is contained in:
2020-03-29 19:37:54 +02:00
parent de0dd21b8d
commit 05f0e66a42
4 changed files with 42 additions and 15 deletions

View File

@@ -26,4 +26,7 @@ class PrivTest{
}
let a = new PrivTest();
console.log(a);
console.log(a.someVar);
console.log(a.someVar);
let preRenderedText = render("I can prerender text-nodes");
document.body.appendChild(render(preRenderedText));