mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-07-10 01:04:28 +00:00
fixes #3701 offset calculation wrong when user looking back at east coast event added testcase
34 lines
623 B
JavaScript
34 lines
623 B
JavaScript
let config = {
|
|
address: "0.0.0.0",
|
|
ipWhitelist: [],
|
|
|
|
timeFormat: 24,
|
|
modules: [
|
|
{
|
|
module: "calendar",
|
|
position: "bottom_bar",
|
|
config: {
|
|
fade: false,
|
|
urgency: 0,
|
|
dateFormat: "Do.MMM, HH:mm",
|
|
fullDayEventDateFormat: "Do.MMM",
|
|
timeFormat: "absolute",
|
|
getRelative: 0,
|
|
maximumNumberOfDays: 28,
|
|
showEnd: true,
|
|
calendars: [
|
|
{
|
|
maximumEntries: 100,
|
|
url: "http://localhost:8080/tests/mocks/chicago-nyedge.ics"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
/*************** DO NOT EDIT THE LINE BELOW ***************/
|
|
if (typeof module !== "undefined") {
|
|
module.exports = config;
|
|
}
|