Merge branch 'GHolli-main' into development03

This commit is contained in:
lumapu 2023-08-04 18:37:07 +02:00
commit fc32ba38a4
3 changed files with 5 additions and 6 deletions

View file

@ -52,8 +52,7 @@ function ml(tagName, ...args) {
function nester(el, n) {
if (typeof n === "string") {
var t = document.createTextNode(n);
el.appendChild(t);
el.innerHTML = n;
} else if (n instanceof Array) {
for(var i = 0; i < n.length; i++) {
if (typeof n[i] === "string") {