Avoid click delay in WebKit 3.0
-
Hi guys,
i am developing an hybrid app for an embedded system (linux, Qt 5.4.1) using QtQuick 2.0 with QtWebKit 3.0.
There is no touch display in use, so I need to get rid of the click delay using buttons and links.I tried some methods without success:
- meta tags with user-scalable=no or initial-scale=1
- css touch-action
- fastclick library
even the mousedown event gives me the annoying delay!
So my question: Is there a way to disable the click delay?
I do not need touch gestures.