Marquee not working with MMM-Pages #254
-
|
I'm having an issue where I have the calendar module enabled on one page with MMM-Pages; however, marquee is not working. I've tried this outside of pages, and the marquee is enabled and working. Looking for some guidance on how to make marquee work when displaying within pages. I've tried multiple positions as it seems that fullscreen_above (or below) cause issues with marquee. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
Issue 1: Marquee not working with MMM-Pages This is now fixed in v1.11.4. The root cause was that Please update the module and it should work out of the box. Feedback would be nice 🙂 Issue 2: Running two independent instances No need to copy and reinstall the module. MMM-CalendarExt3 supports multiple instances natively via the {
module: "MMM-CalendarExt3",
config: {
instanceId: "calendar-page1",
// ... your settings
}
},
{
module: "MMM-CalendarExt3",
config: {
instanceId: "calendar-page2",
// ... different settings
}
} |
Beta Was this translation helpful? Give feedback.
Issue 1: Marquee not working with MMM-Pages
This is now fixed in v1.11.4. The root cause was that
offsetWidth/scrollWidthmeasurements are0when a module lives on a hidden MMM-Pages page (display:none), so the marquee condition was never met. The fix re-runs the marquee calculation on theNEW_PAGEnotification, once the module is actually visible.Please update the module and it should work out of the box. Feedback would be nice 🙂
Issue 2: Running two independent instances
No need to copy and reinstall the module. MMM-CalendarExt3 supports multiple instances natively via the
instanceIdconfig option. Just add two separate module entries in yourconfig.js: