Changed roundTemp implementation to a cleaner one

This commit is contained in:
Olexandr Savchuk
2016-12-02 20:52:36 +01:00
parent 7dda36ab97
commit d67e9468c0
2 changed files with 8 additions and 17 deletions

View File

@@ -182,13 +182,9 @@ Module.register("currentweather",{
weatherIcon.className = "wi weathericon " + this.weatherType;
large.appendChild(weatherIcon);
var temp = this.temperature;
if (this.config.roundTemp) {
temp = Math.round(temp);
}
var temperature = document.createElement("span");
temperature.className = "bright";
temperature.innerHTML = " " + temp + "°";
temperature.innerHTML = " " + this.temperature + "°";
large.appendChild(temperature);
wrapper.appendChild(large);
@@ -436,6 +432,7 @@ Module.register("currentweather",{
roundValue: function(temperature) {
return parseFloat(temperature).toFixed(1);
var decimals = this.config.roundTemp ? 0 : 1;
return parseFloat(temperature).toFixed(decimals);
}
});

View File

@@ -135,20 +135,13 @@ Module.register("weatherforecast",{
icon.className = "wi weathericon " + forecast.icon;
iconCell.appendChild(icon);
var maxTemp = forecast.maxTemp;
var minTemp = forecast.minTemp;
if (this.config.roundTemp) {
maxTemp = Math.round(maxTemp);
minTemp = Math.round(minTemp);
}
var maxTempCell = document.createElement("td");
maxTempCell.innerHTML = maxTemp;
maxTempCell.innerHTML = forecast.maxTemp;
maxTempCell.className = "align-right bright max-temp";
row.appendChild(maxTempCell);
var minTempCell = document.createElement("td");
minTempCell.innerHTML = minTemp;
minTempCell.innerHTML = forecast.minTemp;
minTempCell.className = "align-right min-temp";
row.appendChild(minTempCell);
@@ -351,14 +344,15 @@ Module.register("weatherforecast",{
},
/* function(temperature)
* Rounds a temperature to 1 decimal.
* Rounds a temperature to 1 decimal or integer (depending on config.roundTemp).
*
* argument temperature number - Temperature.
*
* return number - Rounded Temperature.
*/
roundValue: function(temperature) {
return parseFloat(temperature).toFixed(1);
var decimals = this.config.roundTemp ? 0 : 1;
return parseFloat(temperature).toFixed(decimals);
}
});