mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 12:55:22 +00:00
formating fix so that grunt passes
This commit is contained in:
@@ -6,7 +6,6 @@
|
||||
* By Michael Teeuw http://michaelteeuw.nl
|
||||
* MIT Licensed.
|
||||
*/
|
||||
|
||||
Module.register("compliments", {
|
||||
|
||||
// Module config defaults.
|
||||
@@ -107,7 +106,9 @@ Module.register("compliments",{
|
||||
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) {
|
||||
compliments.push.apply(compliments, this.config.compliments[this.currentWeatherType]);
|
||||
|
Reference in New Issue
Block a user