mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 04:02:12 +00:00
formating fix so that grunt passes
This commit is contained in:
parent
cbafaf5d56
commit
90f60f95f7
@ -6,7 +6,6 @@
|
|||||||
* By Michael Teeuw http://michaelteeuw.nl
|
* By Michael Teeuw http://michaelteeuw.nl
|
||||||
* MIT Licensed.
|
* MIT Licensed.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Module.register("compliments", {
|
Module.register("compliments", {
|
||||||
|
|
||||||
// Module config defaults.
|
// Module config defaults.
|
||||||
@ -107,7 +106,9 @@ Module.register("compliments",{
|
|||||||
compliments = this.config.compliments.evening;
|
compliments = this.config.compliments.evening;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typeof compliments === 'undefined' ) compliments = new Array();
|
if (typeof compliments === "undefined") {
|
||||||
|
compliments = new Array();
|
||||||
|
}
|
||||||
|
|
||||||
if (this.currentWeatherType in this.config.compliments) {
|
if (this.currentWeatherType in this.config.compliments) {
|
||||||
compliments.push.apply(compliments, this.config.compliments[this.currentWeatherType]);
|
compliments.push.apply(compliments, this.config.compliments[this.currentWeatherType]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user