From d364b04cad71ce768d33b0a0206245076f05459c Mon Sep 17 00:00:00 2001 From: Michael Teeuw Date: Wed, 11 May 2016 18:01:34 +0200 Subject: [PATCH] supscript wind direction --- modules/default/currentweather/currentweather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js index 59a96827..fec1058c 100644 --- a/modules/default/currentweather/currentweather.js +++ b/modules/default/currentweather/currentweather.js @@ -125,7 +125,7 @@ Module.register("currentweather",{ small.appendChild(windSpeed); if (this.config.showWindDirection) { - var windDirection = document.createElement("span"); + var windDirection = document.createElement("sup"); windDirection.innerHTML = " " + this.translate(this.windDirection); small.appendChild(windDirection); }