From: Dirk Koopman Date: Sun, 17 Jan 2016 19:56:12 +0000 (+0000) Subject: fix type in temperature continuous output X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=31f61adab477ee134dbea476d26376075f1a5022;p=dweather.git fix type in temperature continuous output --- diff --git a/templates/index.html.ep b/templates/index.html.ep index 7526d24..e1bf922 100644 --- a/templates/index.html.ep +++ b/templates/index.html.ep @@ -726,7 +726,7 @@ } if (hr.Temp_Out <= 0) { if (lasttemp > 0) { - daychart.series[4].addPoint([t, 0], true, temppos); + daychart.series[4].addPoint([t, 0], true, tempneg); } daychart.series[4].addPoint([t, hr.Temp_Out], true, tempneg); } else {