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:
@@ -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"){
|
||||
|
Reference in New Issue
Block a user