Skip to content

Commit 340a873

Browse files
committed
slightly reword output page
1 parent 1038e84 commit 340a873

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/aces/webctrl/scripts/terminalunits/Output.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,8 @@
337337
if (success) {
338338
yMsg = "Success: " + yMsg;
339339
}
340-
yMsg += (yMax - yMin).toFixed(1) + " \\u{00B0}F";
341-
const canvas = scatter(vw, vh, heatAO["x"], heatAO["y"], heatAO["x"], heatAO["y"], " min", " \\u{00B0}F", success);
340+
yMsg += (yMax - yMin).toFixed(1) + " \u{00B0}F";
341+
const canvas = scatter(vw, vh, heatAO["x"], heatAO["y"], heatAO["x"], heatAO["y"], " min", " \u{00B0}F", success);
342342
tdHeatAO.style.cursor = "pointer";
343343
tdHeatAO.style.backgroundColor = success ? "darkgreen" : "darkred";
344344
canvas.shown = !graphsVisible;
@@ -439,19 +439,19 @@ <h1>Terminal Unit Report</h1>
439439
<div class="divGrouping">
440440
<label for="heatAOMargin" id="heatAOMarginLabel"></label>
441441
<input type="range" style="width:35vw" min="0" max="50" step="1" value="15" id="heatAOMargin"
442-
oninput="heatAOMarginLabel.innerText='Minimum Heating Differential ('+heatAOMargin.value+' \\u{00B0}F):'">
442+
oninput="heatAOMarginLabel.innerText='Minimum Heating Differential ('+heatAOMargin.value+' \u{00B0}F):'">
443443
</div>
444444
<br id="coolMarginBreak">
445445
<div class="divGrouping">
446446
<label for="coolMargin" id="coolMarginLabel"></label>
447447
<input type="range" style="width:35vw" min="0" max="50" step="1" value="10" id="coolMargin"
448-
oninput="coolMarginLabel.innerText='Minimum Cooling Differential ('+coolMargin.value+' \\u{00B0}F):'">
448+
oninput="coolMarginLabel.innerText='Minimum Cooling Differential ('+coolMargin.value+' \u{00B0}F):'">
449449
</div>
450450
<br id="erraticMarginBreak">
451451
<div class="divGrouping">
452452
<label for="erraticMargin" id="erraticMarginLabel"></label>
453453
<input type="range" style="width:35vw" min="3" max="30" step="0.2" value="10" id="erraticMargin"
454-
oninput="erraticMarginLabel.innerText='Erratic Thermostat Threshhold ('+Number(erraticMargin.value).toFixed(1)+' \\u{00B0}F):'">
454+
oninput="erraticMarginLabel.innerText='Erratic Thermostat Threshhold ('+Number(erraticMargin.value).toFixed(1)+' \u{00B0}F):'">
455455
</div>
456456
__PROGRESS_BAR__
457457
</div>

0 commit comments

Comments
 (0)