Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions docs/Auth-with-Ionic2.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ C:\projects>npm install -g ionic

```

Once the above commands are executed successfully, Check the versions of corodva and ionic by executing the following commands.
Once the above commands are executed successfully, Check the versions of cordova and ionic by executing the following commands.

```bash

Expand Down Expand Up @@ -428,11 +428,11 @@ C:\projects\Ionic_AngularFire2_Project> ionic run android
```

This should run the app on your mobile phone. Now click on the Facebook button and you'll notice the button doesn't work anymore.
This is because the code written so far is good for running our application in browsers, but when running the application on mobile phones, we need to have access to ***Native Mobile API's***, which are provided by _Corodova Plugins_.
This is because the code written so far is good for running our application in browsers, but when running the application on mobile phones, we need to have access to ***Native Mobile API's***, which are provided by _Cordova Plugins_.

**We can access these corodva plugins, using Ionic Native, which are nothing but wrappers for cordova plugins.**
**We can access these cordova plugins, using Ionic Native, which are nothing but wrappers for cordova plugins.**

List of all Ionic Native API's for corodova plugins can be found [here](http://ionicframework.com/docs/v2/native/).
List of all Ionic Native API's for cordova plugins can be found [here](http://ionicframework.com/docs/v2/native/).

Let's look at configuring and installing facebook plugin [here](http://ionicframework.com/docs/v2/native/facebook/).
_Ensure you follow the steps correctly to configure your app._
Expand All @@ -447,7 +447,7 @@ _Ensure you follow the steps correctly to configure your app._

Replace App ID with your app id from portal and provide your app name.

This will install the corodva plugin for facebook.
This will install the cordova plugin for facebook.

Add the platform to your facebook portal as mentioned in the document [here](http://ionicframework.com/docs/v2/native/facebook/).

Expand Down
10 changes: 5 additions & 5 deletions docs/Auth-with-Ionic3-Angular4.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ C:\projects>npm install -g ionic

```

Once the above commands are executed successfully, Check the versions of corodva and ionic by executing the following commands.
Once the above commands are executed successfully, Check the versions of cordova and ionic by executing the following commands.

```bash
C:\projects>cordova -v
Expand Down Expand Up @@ -502,11 +502,11 @@ C:\projects\auth-ng4-ionic3-af2> ionic run android

This should run the app on your mobile phone. Now click on the Facebook button and you'll notice the button doesn't work anymore.
This is because the code written so far is good for running our application in browsers, but when running the application on
mobile phones, we need to have access to ***Native Mobile API's***, which are provided by _Corodova Plugins_.
mobile phones, we need to have access to ***Native Mobile API's***, which are provided by _Cordova Plugins_.

**We can access these corodva plugins, using Ionic Native, which are nothing but wrappers for cordova plugins.**
**We can access these cordova plugins, using Ionic Native, which are nothing but wrappers for cordova plugins.**

List of all Ionic Native API's for corodova plugins can be found [here](http://ionicframework.com/docs/v2/native/).
List of all Ionic Native API's for cordova plugins can be found [here](http://ionicframework.com/docs/v2/native/).

Let's look at configuring and installing facebook plugin [here](http://ionicframework.com/docs/v2/native/facebook/).
_Ensure you follow the steps correctly to configure your app._
Expand All @@ -532,7 +532,7 @@ This should add following entry in your config.xml, located at the root of your
</plugin>

```
This will install the corodva plugin for facebook.
This will install the cordova plugin for facebook.

You should also see a sub-folder named `cordova-plugin-facebook4` under your `plugins` folder.

Expand Down