Updated weathericons to latest version and fixed weatherforecast.js which got broken because of it.

This commit is contained in:
xander
2016-08-03 11:43:28 +02:00
parent 33521ebd31
commit 281269aa0d
16 changed files with 7471 additions and 450 deletions

View File

@@ -126,7 +126,7 @@ Module.register("weatherforecast",{
row.appendChild(iconCell);
var icon = document.createElement("span");
icon.className = forecast.icon;
icon.className = "wi weathericon " + forecast.icon;
iconCell.appendChild(icon);
var maxTempCell = document.createElement("td");