beautified system.html (converted to table)

This commit is contained in:
lumapu 2022-12-18 01:14:54 +01:00
parent b2fc16e030
commit 4df61833ca
4 changed files with 104 additions and 21 deletions

View file

@ -128,9 +128,10 @@ function opt(val, html) {
return o;
}
function div(cl) {
function div(cl, h=null) {
e = document.createElement('div');
e.classList.add(...cl);
if(null != h) e.innerHTML = h;
return e;
}