After incorporating the mjn:famous
package into my meteor application, I noticed an issue with links <a></a>
where they only respond to a long tap on mobile devices. Fast tapping still routes me to the page, but it leads to page refreshing which is not desired. I have tried using preventDefault()
to deactivate this behavior without any success.
preventDefault()
Interestingly, when I remove the package, everything functions as expected in terms of link navigation.
It is worth mentioning that I am also utilizing the famousviews
packages alongside.
Is there a solution to prevent the unwanted page reload on mobile devices? (Tested on iOS8)