Remove trailing dot.

This commit is contained in:
Michael Teeuw 2016-04-08 23:05:45 +02:00
parent c31d392e19
commit a4c3d9cb17

View File

@ -207,7 +207,7 @@ Module.register("weatherforecast",{
var forecast = data.list[i]; var forecast = data.list[i];
this.forecast.push({ this.forecast.push({
day: moment(forecast.dt, "X").format("ddd."), day: moment(forecast.dt, "X").format("ddd"),
icon: this.config.iconTable[forecast.weather[0].icon], icon: this.config.iconTable[forecast.weather[0].icon],
maxTemp: this.roundValue(forecast.temp.max), maxTemp: this.roundValue(forecast.temp.max),
minTemp: this.roundValue(forecast.temp.min) minTemp: this.roundValue(forecast.temp.min)