speed + more config

This commit is contained in:
JurajKubrican
2025-08-04 20:24:57 +02:00
parent c350501f29
commit db8fd17376
7 changed files with 35 additions and 12 deletions

View File

@@ -16,7 +16,6 @@
const box = deserializeBox(i);
const el = document.getElementById("box-" + box.id);
el.checked = box.value;
// console.log(i,box,el)
});
return;
}
@@ -24,8 +23,8 @@
const items = instruction.split(":");
const el = document.getElementById("counter");
el.innerText = items[1];
const el2 = document.getElementById("ips");
el2.innerText = items[2].replaceAll(",", "\n");
const el2 = document.getElementById("users");
el2.innerText = items[2].replaceAll(",,,", "\n");
return;
}
};