Initial commit of V2.

This commit is contained in:
Michael Teeuw
2016-03-24 17:19:32 +01:00
parent c428d6a985
commit 4266c0b279
235 changed files with 31730 additions and 246 deletions

52
js/defaults.js Normal file
View File

@@ -0,0 +1,52 @@
/* exported defaults */
/* Magic Mirror
* Config Defauls
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var defaults = {
language: 'en',
modules: [
{
module: 'helloworld',
position: 'upper_third',
config: {
text: 'Magic Mirror V2',
classes: 'large thin'
}
},
{
module: 'helloworld',
position: 'middle_center',
config: {
text: 'Please create a config file.'
}
},
{
module: 'helloworld',
position: 'middle_center',
config: {
text: 'See README for more information.',
classes: 'small dimmed'
}
},
{
module: 'helloworld',
position: 'bottom_bar',
config: {
text: 'www.michaelteeuw.nl',
classes: 'xsmall dimmed'
}
},
],
paths: {
modules: 'modules',
vendor: 'vendor'
},
};