Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Remove $ from install instructions #189

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ On iOS 10, you can use `barColor` and `controlTintColor` as well
## 3. Installation
To install the plugin with the Cordova CLI from npm:

```
$ cordova plugin add cordova-plugin-safariviewcontroller
```bash
cordova plugin add cordova-plugin-safariviewcontroller
```

*Note*: the plugin requires Cordova Android 7.0.0 or later.
Expand All @@ -72,8 +72,8 @@ Since SafariViewController is new in iOS9 you need to have a fallback for older
so if `available` returns false (see the snippet below) you want to open the URL in the InAppBrowser probably,
so be sure to include that plugin as well:

```
$ cordova plugin add cordova-plugin-inappbrowser
```bash
cordova plugin add cordova-plugin-inappbrowser
```

I'm not including it as a dependency as not all folks may have this requirement.
Expand Down