3D Carousel Bundles force page reloads on mobile devices.
Add a 3D Carousel Bundle either images or text on a page, visit the page on a mobile device and try scrolling down.
Fix the issue with refreshing the page to rebuild the carousel.
For me to get going pending a resolution, I removed the following code:
// refresh the page to rebuild the carousel.
let currentWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
window.onresize = function () {
let newWidth = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
if (Math.abs(newWidth - currentWidth) >= 50) {
location.reload();
currentWidth = newWidth;
}
}
Closed: works as designed
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.