Skip to content

Commit

Permalink
Fix redox symbol [ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
100prznt authored Sep 1, 2020
1 parent a7ffd5b commit 2d9277e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/EzoGateway/WebResources/cal/orp-live.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
var worker = new Worker('js/orp-live.js');
worker.addEventListener('message', function (e) {
console.log(e.data);
$("#data").prepend('&deg; = ' + e.data.toFixed(3) + ' mV<br>');
$("#data").prepend('E&deg; = ' + e.data.toFixed(3) + ' mV<br>');
}, false);

worker.postMessage({ 'cmd': 'start' });
Expand All @@ -31,4 +31,4 @@
<p id="data" style="font-family: Consolas,monaco,monospace"></p>
</div>
</body>
</html>
</html>

0 comments on commit 2d9277e

Please sign in to comment.