MMM-forecast-io
MMM-forecast-io copied to clipboard
Swap placement of temperature and forecast description
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!
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.