summaryrefslogtreecommitdiffstats
path: root/usr/local/www/javascript
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-10-23 23:22:01 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-10-23 23:22:01 +0000
commitf78b47e3111b46e6fb5a58a2d881a218489cab23 (patch)
treedf97d3a72a7ff6d0c5e8143dc45327fc47a22475 /usr/local/www/javascript
parentad8390ea5dffc9a55c9829e3e52ab3ba9792aa30 (diff)
downloadpfsense-f78b47e3111b46e6fb5a58a2d881a218489cab23.zip
pfsense-f78b47e3111b46e6fb5a58a2d881a218489cab23.tar.gz
MFC 7117
Temperature is in Celsius not in percentages
Diffstat (limited to 'usr/local/www/javascript')
-rw-r--r--usr/local/www/javascript/index/sajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/javascript/index/sajax.js b/usr/local/www/javascript/index/sajax.js
index 263f40a..e69a633 100644
--- a/usr/local/www/javascript/index/sajax.js
+++ b/usr/local/www/javascript/index/sajax.js
@@ -40,7 +40,7 @@ function updateCPU(x)
function updateTemp(x)
{
if(document.getElementById("tempmeter") != null) {
- document.getElementById("tempmeter").value = x + '%';
+ document.getElementById("tempmeter").value = x + 'C';
document.getElementById("tempwidtha").style.width = x + 'px';
document.getElementById("tempwidthb").style.width = (100 - x) + 'px';
}
OpenPOWER on IntegriCloud