changed a for loop to fix for testing
This commit is contained in:
parent
26e8e93785
commit
ea0380e3eb
1 changed files with 4 additions and 4 deletions
|
|
@ -192,11 +192,11 @@ async function checkSettings(skipServer=false) {
|
|||
qrCodeGenerate()
|
||||
document.getElementById("alerttimetextbox").value = alertTime
|
||||
partyButtonState = document.getElementById("partymode-button").innerHTML;
|
||||
checksforadmin = document.getElementById("admincheckholder")
|
||||
let nodeList = document.getElementById("admincheckholder").children
|
||||
// temporary
|
||||
for (let i in checksforadmin.children) {
|
||||
if (i.type == "checkbox") {
|
||||
i.checked = true;
|
||||
for (let i=0; i<nodeList.length;i++) {
|
||||
if (nodeList[i].type == 'checkbox') {
|
||||
nodeList[i].checked = true;
|
||||
}
|
||||
}
|
||||
//ping the server here
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue