1
0
mirror of https://github.com/thooge/esp32-nmea2000-obp60.git synced 2025-12-15 06:53:07 +01:00

intermediate: find pipelines in DB and use existing

This commit is contained in:
andreas
2023-10-01 20:48:45 +02:00
parent 38dae47fa5
commit 7a5da47e17
4 changed files with 180 additions and 13 deletions

View File

@@ -65,6 +65,10 @@ const setValue=(id,value)=>{
el.value=value;
return;
}
if (el.tagName.match(/^H[0-9]/)){
el.textContent=value;
return;
}
if (el.tagName == 'A'){
el.setAttribute('href',value);
return;