Standardize: TO JSCS!

This commit is contained in:
Nicholas Hubbard
2016-04-05 14:35:11 -04:00
parent 18390503b5
commit 426728058c
28 changed files with 623 additions and 653 deletions

View File

@@ -10,49 +10,48 @@
var defaults = {
port: 8080,
language: 'en',
language: "en",
timeFormat: 24,
modules: [
{
module: 'helloworld',
position: 'upper_third',
module: "helloworld",
position: "upper_third",
config: {
text: 'Magic Mirror V2',
classes: 'large thin'
text: "Magic Mirror V2",
classes: "large thin"
}
},
{
module: 'helloworld',
position: 'middle_center',
module: "helloworld",
position: "middle_center",
config: {
text: 'Please create a config file.'
text: "Please create a config file."
}
},
{
module: 'helloworld',
position: 'middle_center',
module: "helloworld",
position: "middle_center",
config: {
text: 'See README for more information.',
classes: 'small dimmed'
text: "See README for more information.",
classes: "small dimmed"
}
},
{
module: 'helloworld',
position: 'bottom_bar',
module: "helloworld",
position: "bottom_bar",
config: {
text: 'www.michaelteeuw.nl',
classes: 'xsmall dimmed'
text: "www.michaelteeuw.nl",
classes: "xsmall dimmed"
}
},
],
paths: {
modules: 'modules',
vendor: 'vendor'
modules: "modules",
vendor: "vendor"
},
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {module.exports = defaults;}
if (typeof module !== "undefined") {module.exports = defaults;}