Currently, I am developing a web app that includes a feature where users can hold down a button to adjust a value.
The backend of the app is supported by Meteor.js with Angular serving as the front end. The functionality works perfectly, except for Mobile Safari. Whenever a user attempts to hold down the button or quickly tap it several times, iOS displays a magnifying glass and tries to select random text on the page.
Do you have any suggestions on how to resolve this issue? I tried using -webkit-user-select: none;
based on my research, but it did not solve the problem.