mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-28 12:12:20 +00:00
23 lines
395 B
JavaScript
23 lines
395 B
JavaScript
|
let config = {
|
||
|
modules: [
|
||
|
{
|
||
|
module: "compliments",
|
||
|
position: "lower_third",
|
||
|
animateIn: "foo",
|
||
|
animateOut: "bar",
|
||
|
config: {
|
||
|
compliments: {
|
||
|
anytime: ["AnimateCSS Testing..."]
|
||
|
},
|
||
|
updateInterval: 2000,
|
||
|
fadeSpeed: 1000
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
|
||
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
||
|
if (typeof module !== "undefined") {
|
||
|
module.exports = config;
|
||
|
}
|