rolling 20210705

This commit is contained in:
jomjol
2021-07-05 07:30:04 +02:00
parent daa1960dff
commit e24ba68fec
9 changed files with 43 additions and 50 deletions

View File

@@ -256,10 +256,7 @@ function WriteConfigININew()
{
for (_num in NUMBERS)
{
if (NUMBERS[_num]["name"] == "default")
text = name;
else
text = NUMBERS[_num]["name"] + "." + name;
text = NUMBERS[_num]["name"] + "." + name;
var text = text + " ="
@@ -295,10 +292,7 @@ function WriteConfigININew()
{
for (var _roiddet in NUMBERS[_roi]["digit"])
{
if (NUMBERS[_roi]["name"] == "default")
text = NUMBERS[_roi]["digit"][_roiddet]["name"];
else
text = NUMBERS[_roi]["name"] + "." + NUMBERS[_roi]["digit"][_roiddet]["name"];
text = NUMBERS[_roi]["name"] + "." + NUMBERS[_roi]["digit"][_roiddet]["name"];
text = text + " " + NUMBERS[_roi]["digit"][_roiddet]["x"];
text = text + " " + NUMBERS[_roi]["digit"][_roiddet]["y"];
text = text + " " + NUMBERS[_roi]["digit"][_roiddet]["dx"];
@@ -316,10 +310,7 @@ function WriteConfigININew()
{
for (var _roiddet in NUMBERS[_roi]["analog"])
{
if (NUMBERS[_roi]["name"] == "default")
text = NUMBERS[_roi]["analog"][_roiddet]["name"];
else
text = NUMBERS[_roi]["name"] + "." + NUMBERS[_roi]["analog"][_roiddet]["name"];
text = NUMBERS[_roi]["name"] + "." + NUMBERS[_roi]["analog"][_roiddet]["name"];
text = text + " " + NUMBERS[_roi]["analog"][_roiddet]["x"];
text = text + " " + NUMBERS[_roi]["analog"][_roiddet]["y"];
text = text + " " + NUMBERS[_roi]["analog"][_roiddet]["dx"];