[CB-3816] allow more xrefs to APIs in 'plugin add' xection
Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/b53bf553 Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/b53bf553 Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/b53bf553 Branch: refs/heads/master Commit: b53bf553b09a2d22c6f9cedb394ed00b4fa2655e Parents: a26096b Author: Mike Sierra <[email protected]> Authored: Mon Jul 29 12:14:19 2013 -0400 Committer: Michael Brooks <[email protected]> Committed: Mon Jul 29 11:57:42 2013 -0700 ---------------------------------------------------------------------- docs/en/edge/guide/cli/index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/b53bf553/docs/en/edge/guide/cli/index.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/guide/cli/index.md b/docs/en/edge/guide/cli/index.md index 474790f..352ae2d 100644 --- a/docs/en/edge/guide/cli/index.md +++ b/docs/en/edge/guide/cli/index.md @@ -230,33 +230,33 @@ The `cordova plugin add` command requires you to specify the repository for the plugin code. Here are examples of features you might add: -* Basic device information: +* Basic device information (Device API): $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device.git -* Network and battery status: +* Network Connection and Battery Events: $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-battery-status.git -* Accelerometer, compass, and geolocation: +* Accelerometer, Compass, and Geolocation: $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device-motion.git $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-device-orientation.git $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-geolocation.git -* Camera, media capture, and media playback: +* Camera, Media playback and Capture: $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-camera.git $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-media-capture.git $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-media.git -* Access files on device or network: +* Access files on device or network (File API): $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file.git $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-file-transfer.git -* Notifications via dialog box or vibration: +* Notification via dialog box or vibration: $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-dialogs.git $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration.git @@ -269,11 +269,11 @@ might add: $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-globalization.git -* Splash Screen: +* Splashscreen: $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-splashscreen.git -* In-app browser: +* Open new browser windows (InAppBrowser): $ cordova plugin add https://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser.git
