1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-20 13:21:49 +02:00

more upload error sanity check

add login icon in embedded
This commit is contained in:
Luc
2019-09-03 08:29:47 +02:00
parent 13f658ef1b
commit e7600a5192
7 changed files with 1057 additions and 1019 deletions

View File

@@ -277,8 +277,14 @@ xmlhttp.onreadystatechange = function() {
nbitem++;
}
if (sublist[0].trim() == "authentication"){
if (sublist[1].trim() == "no") authentication = false;
else authentication = true;
if (sublist[1].trim() == "no") {
authentication = false;
document.getElementById('loginicon').style.visibility = "hidden";
}
else {
authentication = true;
document.getElementById('loginicon').style.visibility = "visible";
}
nbitem++;
}
if (sublist[0].trim() == "webcommunication"){