Merge branch 'dev'
This commit is contained in:
commit
58f2997449
1 changed files with 4 additions and 0 deletions
|
@ -20,7 +20,11 @@ export function json_as_html (json, state = new Map()) {
|
||||||
const elem = document.createElement(type);
|
const elem = document.createElement(type);
|
||||||
|
|
||||||
attributes.forEach(([key, value]) => {
|
attributes.forEach(([key, value]) => {
|
||||||
|
// from testing: class only works with the former, onclick only work with the latter. so both are used here :)
|
||||||
|
// also from testing: this only works in this specific order.
|
||||||
|
// TODO: learn how element attribute setting works and create something more reliable.
|
||||||
elem.setAttribute(key, value);
|
elem.setAttribute(key, value);
|
||||||
|
elem[key] = value;
|
||||||
});
|
});
|
||||||
|
|
||||||
const child_nodes = use_as_array(children).map(child => json_as_html(child, state))
|
const child_nodes = use_as_array(children).map(child => json_as_html(child, state))
|
Loading…
Reference in a new issue