You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2015/10/27 21:52:06 UTC

docs commit: CB-9685 Documentation for the fix for the iOS9 longpress magnifying glass issue

Repository: cordova-docs
Updated Branches:
  refs/heads/master 50d8ce08d -> c0555cc87


CB-9685 Documentation for the fix for the iOS9 longpress magnifying glass issue

This closes #404


Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/c0555cc8
Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/c0555cc8
Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/c0555cc8

Branch: refs/heads/master
Commit: c0555cc878ac903ad9e267fd15079419b0c4073b
Parents: 50d8ce0
Author: EddyVerbruggen <ed...@gmail.com>
Authored: Tue Oct 27 21:08:15 2015 +0100
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Tue Oct 27 13:57:45 2015 -0700

----------------------------------------------------------------------
 www/docs/en/edge/guide/platforms/ios/config.md | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/c0555cc8/www/docs/en/edge/guide/platforms/ios/config.md
----------------------------------------------------------------------
diff --git a/www/docs/en/edge/guide/platforms/ios/config.md b/www/docs/en/edge/guide/platforms/ios/config.md
index cd8e3ac..e08836d 100644
--- a/www/docs/en/edge/guide/platforms/ios/config.md
+++ b/www/docs/en/edge/guide/platforms/ios/config.md
@@ -158,3 +158,16 @@ File](config_ref_index.md.html#The%20config.xml%20File) for information on globa
   
         <preference name="CordovaWebViewEngine" value="CDVUIWebViewEngine" />
 
+- `SuppressesLongPressGesture` (boolean, defaults to `false`): Set to `true` to
+  avoid iOS9+ rendering a magnifying glass widget when the user longpresses the webview.
+  Test your app thoroughly since this may interfere with text selection capabilities.
+
+        <preference name="SuppressesLongPressGesture" value="true" />
+
+- `Suppresses3DTouchGesture` (boolean, defaults to `false`): Set to `true` to
+  avoid 3D Touch capable iOS devices rendering a magnifying glass widget when the user
+  applies force while longpressing the webview. Test your app thoroughly since this
+  disables `onclick` handlers, but plays nice with `ontouchend`.
+  If this setting is `true`, `SuppressesLongPressGesture` will effectively be `true` as well.
+
+        <preference name="Suppresses3DTouchGesture" value="true" />


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org