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);
}
});