@68jeeper yes! Sorry for the delayed response, I didn’t receive any notifications that you tagged me in this post.
My solution was to use (https://github.com/JanLoebel/mmm-touchgestures). Hammer.js seems to be the difference and why this one works. The documentation was challenging for me ti follow but I was able to get it working through trial and error. My config look like this for MMM-touchgestures
{
module: 'mmm-touchgestures',
config: {
gestures: {
"swipe": {
enabled: true,
threshold: 50
}
},
actions: {
"swiperight" : function() {
return "PAGE_INCREMENT";
},
"swipeleft" : function() {
return "PAGE_DECREMENT";
},
"swipeup" : function() {
console.log("Triggered swipeup");
},
"swipedown" : function() {
console.log("Triggered swipedown");
},
},
}
},