taozhzzl commented on issue #819:
URL: https://github.com/apache/cordova-ios/issues/819#issuecomment-617507046
Thanks and that's the case! I'm using Apache wkwebview plugin, developers
who encountered this problem, set two preferences in Cordova config.xml, and
disable 'dragstart' event in javascript, text selection works fine and 3D touch
gesture is disabled as usual in iOS 13.4 (along with iPadOS 13.4):
config.xml :
```
<preference name="Suppresses3DTouchGesture" value="true" />
<preference name="Allow3DTouchLinkPreview" value="true" />
```
your app.js :
```
$$('body').on('dragstart', 'a, img', function (e) {
e.preventDefault();
});
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]