You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2013/09/21 14:07:18 UTC

[47/50] docs commit: [CB-3820] tighten up text for BB prefs

[CB-3820] tighten up text for BB prefs


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

Branch: refs/heads/master
Commit: 1a18b54c2197610bb4a8c5a82df4719d6956c2f5
Parents: 2fb247f
Author: Mike Sierra <ms...@adobe.com>
Authored: Fri Sep 20 12:06:27 2013 -0400
Committer: Michael Brooks <mi...@michaelbrooks.ca>
Committed: Sat Sep 21 14:05:59 2013 +0200

----------------------------------------------------------------------
 .../edge/guide/platforms/blackberry10/config.md | 31 ++++++++++----------
 1 file changed, 16 insertions(+), 15 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/1a18b54c/docs/en/edge/guide/platforms/blackberry10/config.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/platforms/blackberry10/config.md b/docs/en/edge/guide/platforms/blackberry10/config.md
index 2199f63..8abaffe 100644
--- a/docs/en/edge/guide/platforms/blackberry10/config.md
+++ b/docs/en/edge/guide/platforms/blackberry10/config.md
@@ -24,27 +24,28 @@ across each application and CordovaWebView instance. This section
 details preferences that only apply to BlackBerry 10 builds. See The
 config.xml File for information on global configuration options.
 
-* `ChildBrowser`: Disables child browser windows. By default, apps
-  launch a secondary browser window to display resources accessed via
-  `window.open()` or by specifying a `_blank` anchor target. Specify
-  `disable` to override this default behavior.
+* `ChildBrowser` (`disable` or the default `enable`): Disables child
+  browser windows. By default, apps launch a secondary browser window
+  to display resources accessed via `window.open()` or by specifying a
+  `_blank` anchor target. Specify `disable` to override this default
+  behavior.
 
         <preference name="ChildBrowser" value="disable"/>
 
-* `PopupBlocker`: Enables the popup blocker, which prevents calls to
-  `window.open()`. By default, popups display in a child browser
-  window. Setting the preference to `enable` prevents it from
-  displaying at all.
+* `PopupBlocker` (`enable` or the default `disable`): Enables the
+  popup blocker, which prevents calls to `window.open()`. By default,
+  popups display in a child browser window. Setting the preference to
+  `enable` prevents it from displaying at all.
 
         <preference name="PopupBlocker" value="enable"/>
 
-* `WebSecurity`: Disables web security. Disabling web security allows
-  you to access remote content from unknown sources during
-  development.  Before packaging your app for distribution, you should
-  remove this setting. This feature is intended as a development
-  convenience only. In production, all URIs should be known and should
-  be whitelisted using the `<access>` element. To disable, specify
-  value as `disable`.
+* `WebSecurity` (`disable` or the default `enable`): Set to `disable`
+  to override web security settings, allowing access to remote content
+  from unknown sources. This preference is intended as a development
+  convenience only, so remove it before packaging your app for
+  distribution.  For the released app, all URIs should be known and
+  whitelisted using the `<access>` element, described in the Domain
+  Whitelist Guide.
 
         <preference name="WebSecurity" value="disable"/>