Skip to content

Commit

Permalink
kneb - 0.206
Browse files Browse the repository at this point in the history
  • Loading branch information
pbberlin committed Dec 28, 2023
1 parent f810e1e commit b59507b
Show file tree
Hide file tree
Showing 6 changed files with 552 additions and 50 deletions.
12 changes: 9 additions & 3 deletions app-bucket/content/kneb1/echart/inner-0.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,7 @@

</style>

<p id="headline">
Probieren Sie gerne das Tool selbst aus. Welche Werte würden Sie für sich selbst wählen?
<p id="tool-headline">
</p>

<div class="panel-flex-container" >
Expand Down Expand Up @@ -384,7 +383,7 @@


function appendUnit(s) {
return `${s} T`;
return `${s} `;
}


Expand All @@ -400,17 +399,24 @@
return dbl
}

const toolHeadline = document.getElementById("tool-headline");
if (!toolHeadline) {
console.error(` tag 'tool-headline' not found`);
}

// the three fields for permanent storage of parameters in the database
// come in two distinct instances, separated by "_0" and "_1"
const getBackgroundField = core => {
const nameInstance0 = `${core}_0`;
const el0 = document.getElementById(nameInstance0);
if (el0) {
toolHeadline.innerHTML = `Probieren Sie gerne das Tool selbst aus. Welche Werte würden Sie für sich selbst wählen?`;
return el0
}
const nameInstance1 = `${core}_1`;
const el1 = document.getElementById(nameInstance1);
if (el1) {
toolHeadline.innerHTML = `Welche Werte würden Sie für dem Landwirt wählen?`;
return el1
}

Expand Down
10 changes: 8 additions & 2 deletions app-bucket/content/kneb1/echart/inner-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,7 @@

</style>

<p id="headline">
Probieren Sie gerne das Tool selbst aus. Welche Werte würden Sie für sich selbst wählen?
<p id="tool-headline">
</p>

<div class="panel-flex-container" >
Expand Down Expand Up @@ -366,17 +365,24 @@
return dbl
}

const toolHeadline = document.getElementById("tool-headline");
if (!toolHeadline) {
console.error(` tag 'tool-headline' not found`);
}

// the three fields for permanent storage of parameters in the database
// come in two distinct instances, separated by "_0" and "_1"
const getBackgroundField = core => {
const nameInstance0 = `${core}_0`;
const el0 = document.getElementById(nameInstance0);
if (el0) {
toolHeadline.innerHTML = `Probieren Sie gerne das Tool selbst aus. Welche Werte würden Sie für sich selbst wählen?`;
return el0
}
const nameInstance1 = `${core}_1`;
const el1 = document.getElementById(nameInstance1);
if (el1) {
toolHeadline.innerHTML = `Welche Werte würden Sie für sich selbst wählen?`;
return el1
}

Expand Down
Loading

0 comments on commit b59507b

Please sign in to comment.