1
0
Fork 0
mirror of https://github.com/lumapu/ahoy.git synced 2025-08-25 15:26:30 +02:00
* merge PR , improved store of settings and javascript, thx @tastendruecker123
* support `.` and `,` as floating point seperator in setup 
This commit is contained in:
lumapu 2023-04-13 22:58:59 +02:00
commit 12a3d503c8
6 changed files with 46 additions and 42 deletions
src/web/html

View file

@ -103,11 +103,9 @@ function parseVersion(obj) {
}
function parseESP(obj) {
if(document.getElementById("esp_type").childNodes.length < 1) {
document.getElementById("esp_type").append(
document.createTextNode("Board: " + obj["esp_type"])
);
}
document.getElementById("esp_type").replaceChildren(
document.createTextNode("Board: " + obj["esp_type"])
);
}
function parseRssi(obj) {