mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-12 01:29:58 +01:00
Added option for space in SSID and password
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -222,7 +222,7 @@ f.write("#endif\n")
|
|||||||
f.write("\n")
|
f.write("\n")
|
||||||
f.write("void copyWebFiles(bool force){\n")
|
f.write("void copyWebFiles(bool force){\n")
|
||||||
f.write("#ifdef USE_PROGMEM_WEB_FILES\n")
|
f.write("#ifdef USE_PROGMEM_WEB_FILES\n")
|
||||||
f.write("if(settings.getWebSpiffs()){\n")
|
f.write("if(settings.getWebSettings().use_spiffs){\n")
|
||||||
f.write(copy_files_function)
|
f.write(copy_files_function)
|
||||||
f.write("}\n")
|
f.write("}\n")
|
||||||
f.write("#endif\n")
|
f.write("#endif\n")
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ function draw(){
|
|||||||
}else if(typeof settingsJson[key] == "number"){
|
}else if(typeof settingsJson[key] == "number"){
|
||||||
html += "<input type='number' name='"+key+"' value="+settingsJson[key]+" onchange='save(\""+key+"\",parseInt(this.value))'>";
|
html += "<input type='number' name='"+key+"' value="+settingsJson[key]+" onchange='save(\""+key+"\",parseInt(this.value))'>";
|
||||||
}else if(typeof settingsJson[key] == "string"){
|
}else if(typeof settingsJson[key] == "string"){
|
||||||
html += "<input type='text' name='"+key+"' value="+settingsJson[key]+" "+(key=="version"?"readonly":"")+" onchange='save(\""+key+"\",this.value)'>";
|
html += "<input type='text' name='"+key+"' value='"+settingsJson[key].toString()+"' "+(key=="version"?"readonly":"")+" onchange='save(\""+key+"\",this.value)'>";
|
||||||
}
|
}
|
||||||
|
|
||||||
html += "</div>"
|
html += "</div>"
|
||||||
|
|||||||
Reference in New Issue
Block a user