inline fmt for default values
Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/34f9eb6e Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/34f9eb6e Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/34f9eb6e Branch: refs/heads/master Commit: 34f9eb6e99a8a2ec2e849eade60ac7bd36bf019f Parents: b53bf55 Author: Mike Sierra <[email protected]> Authored: Mon Jul 29 13:42:10 2013 -0400 Committer: Michael Brooks <[email protected]> Committed: Mon Jul 29 11:58:14 2013 -0700 ---------------------------------------------------------------------- docs/en/edge/guide/platforms/android/config.md | 6 +++--- docs/en/edge/guide/platforms/ios/config.md | 24 ++++++++++----------- 2 files changed, 15 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/34f9eb6e/docs/en/edge/guide/platforms/android/config.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/guide/platforms/android/config.md b/docs/en/edge/guide/platforms/android/config.md index 991ac18..d3e710c 100644 --- a/docs/en/edge/guide/platforms/android/config.md +++ b/docs/en/edge/guide/platforms/android/config.md @@ -27,7 +27,7 @@ across the application, and per CordovaWebView instance. Various other preferences (as `<preference>` tags) default on not breaking existing apps. The available preferences are: -* `useBrowserHistory` (boolean, defaults to true): set to false if you +* `useBrowserHistory` (boolean, defaults to `true`): set to false if you want to use the history shim that was used to work around the hashtag error present in Android 3.x prior to the history fix. (Note: This setting will be deprecated in April 2013) @@ -49,14 +49,14 @@ breaking existing apps. The available preferences are: * `loadUrlTimeoutValue`: How much time Cordova should wait before throwing a timeout error on the application. -* `keepRunning` (boolean, defaults to true): Determines whether +* `keepRunning` (boolean, defaults to `true`): Determines whether Cordova stays running in the background. * `splashscreen`: The name of the file minus its extension in the `res/drawable` directory. If you have multiple assets, they all must share this common name in their respective directories. -* `disallowOverscroll` (boolean, defaults to false): set to `true` to +* `disallowOverscroll` (boolean, defaults to `false`): set to `true` to disable the glow when a user scrolls beyond the edge of the webview. ## `<plugin>` http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/34f9eb6e/docs/en/edge/guide/platforms/ios/config.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/guide/platforms/ios/config.md b/docs/en/edge/guide/platforms/ios/config.md index 0dcfe23..4b0a36d 100644 --- a/docs/en/edge/guide/platforms/ios/config.md +++ b/docs/en/edge/guide/platforms/ios/config.md @@ -29,39 +29,39 @@ directory. Various preferences (as `<preference>` tags) default on not breaking existing apps. The available preferences are: -* `DisallowOverscroll` (boolean, defaults to false): set to `true` if +* `DisallowOverscroll` (boolean, defaults to `false`): set to `true` if you don't want the WebView to rubber-band. * `TopActivityIndicator` (string, defaults to `gray`): this is the top spinning throbber in the status/battery bar, valid values are `whiteLarge`, `white`, and `gray`. -* `EnableLocation` (boolean, defaults to false): set to true, to +* `EnableLocation` (boolean, defaults to `false`): set to true, to initialize the Geolocation plugin at start-up (so the fix on your location can be more accurate) **DEPRECATED**: please set the `onload` attribute of the `Geolocation` plugin to `true` instead. -* `EnableViewportScale` (boolean, defaults to false): set to true to +* `EnableViewportScale` (boolean, defaults to `false`): set to true to prevent viewport scaling through a meta tag. -* `AutoHideSplashScreen` (boolean, defaults to true): set to false to +* `AutoHideSplashScreen` (boolean, defaults to `true`): set to false to control when the splashscreen is hidden through a JavaScript API. -* `FadeSplashScreen` (boolean, defaults to true): set to false to +* `FadeSplashScreen` (boolean, defaults to `true`): set to false to prevent the splash-screen to fade in and out when showing or hiding it. * `FadeSplashScreenDuration` (float, defaults to 2): The splash-screen Fade duration in seconds. -* `ShowSplashScreenSpinner` (boolean, defaults to true): set to false +* `ShowSplashScreenSpinner` (boolean, defaults to `true`): set to false to hide the splash-screen spinner. -* `MediaPlaybackRequiresUserAction` (boolean, defaults to false): set +* `MediaPlaybackRequiresUserAction` (boolean, defaults to `false`): set to true to not allow autoplayed HTML5 video. -* `AllowInlineMediaPlayback` (boolean, defaults to false): set to +* `AllowInlineMediaPlayback` (boolean, defaults to `false`): set to true to allow inline HTML5 media playback, also, the video element in the HTML document must also include the webkit-playsinline attribute. @@ -72,20 +72,20 @@ existing apps. The available preferences are: allow local backups (iTunes sync). Set to `none` to not allow any backups of web storage. -* `KeyboardDisplayRequiresUserAction` (boolean, defaults to true): +* `KeyboardDisplayRequiresUserAction` (boolean, defaults to `true`): set to false to open the keyboard when form elements get focus via the JavaScript focus() call. -* `SuppressesIncrementalRendering` (boolean, defaults to false): set +* `SuppressesIncrementalRendering` (boolean, defaults to `false`): set to true to wait until all new view content has been received before it is rendered. -* `HideKeyboardFormAccessoryBar` (boolean, defaults to false): set to +* `HideKeyboardFormAccessoryBar` (boolean, defaults to `false`): set to true to hide the additional toolbar that is on top of the keyboard. This toolbar features the __Prev__, __Next__, and __Done__ buttons. -* `KeyboardShrinksView` (boolean, defaults to false): set to `true` to +* `KeyboardShrinksView` (boolean, defaults to `false`): set to `true` to shrink the WebView when the keyboard comes up. The WebView shrinks instead of the viewport shrinking and the page scrollable. This applies to apps that position their elements relative to the bottom
