mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 11:50:00 +00:00
Adding date to the clock module when displayType is "analog" and "showDate" is true. The setting in analogShowDate is respected. Fixes #3100 --------- Co-authored-by: Michael Teeuw <michael@xonaymedia.nl> Co-authored-by: Veeck <github@veeck.de>
23 lines
386 B
JavaScript
23 lines
386 B
JavaScript
/* MagicMirror² Test config for analog clock face
|
|
*
|
|
* MIT Licensed.
|
|
*/
|
|
let config = {
|
|
modules: [
|
|
{
|
|
module: "clock",
|
|
position: "middle_center",
|
|
config: {
|
|
displayType: "analog",
|
|
analogFace: "face-006",
|
|
showDate: false
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|