MMM-forecast-io icon indicating copy to clipboard operation
MMM-forecast-io copied to clipboard

Swap placement of temperature and forecast description

Open JaredLodwick opened this issue 6 years ago • 1 comments

Hi, I am trying to reposition some of the elements of the module. Currently, it reads (including real data):

"[Icon] 53º Mostly cloudy for the hour"

I'd like to rearrange to read:

"Mostly cloudy for the hour [Icon] 53º"

How can I do this? Thanks!

JaredLodwick avatar Dec 04 '18 03:12 JaredLodwick

in MMM-forecast-io.js

Swap following lines:

wrapper.appendChild(large);
wrapper.appendChild(summary);

with:

wrapper.appendChild(summary);
wrapper.appendChild(large);

and reload Magic MIrror client.

morozgrafix avatar Dec 08 '18 04:12 morozgrafix