You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
Hi, i am using a Android 7 Phone with the Chrome Version 78.0.3904...
and I am still getting a 300-350ms delay.
I have no clue how to fix this.
It does not occur on safari.
My meta-tag looks like this:
<meta name="viewport" content="width=device-width">
And I have the css:
touch-action: manipulation;
I manually set a stopwatch to detect my delay an it's always like this:
0ms touchstart
30ms touchend
479ms click
I am using
Cordova: 9.0.0
Android-cordova:8.1.0
EDIT:
After using:
$(document).on("click","#charts_menu",function() { console.log(
${new Date().getTime() - timer}ms click); });
instead of:
document.getElementById("charts_menu").addEventListener("click", function(){ console.log(
${new Date().getTime() - timer}ms click mans);; });
I do not get the delay of 300ms anymore.
Do i have to refactor my whole code or is there a better way?
The text was updated successfully, but these errors were encountered: