Read the statement by Michael Teeuw here.
Need help MMM-touch MMM-pages MMM-page indicator
-
@sdetweil changing the cursor value doesn’t seem to make a difference. The touch functionality works for mmm-Calendarext3, to select a day, clicking on the mmm-page-indicator to change pages and mmm-Microsofttodo to complete tasks, so it doesn’t seem to be a problem aside from mmm-Touch not registering the values unless in devtools with the device toolbar open.
-
@tburk32 so touch is under ext3
put touch on top then ext3 wont work
-
@tburk32 were you able to get this going? I am attempting to do the same and it is not working for me either.
-
@68jeeper what is not working?
-
-
@68jeeper well, I can’t get touch to trigger at all… only thing in bottom_bar…
(on my mac with mouse) -
@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"); }, }, } },