Working on a metronome that users may tend to tap very fast. So it needs to disable double tap to zoom, turns out this is done with a one-liner CSS.
body {
touch-action: manipulation;
}
Working on a metronome that users may tend to tap very fast. So it needs to disable double tap to zoom, turns out this is done with a one-liner CSS.
body {
touch-action: manipulation;
}