docs(network): fix plugin reference (#1247)

This commit is contained in:
Lucas A. Moulin 2017-03-24 16:14:17 -03:00 committed by Ibby Hadeed
parent e4fc01a23c
commit 7d0f1bd3ff

View File

@ -34,7 +34,7 @@ declare var navigator: any;
* // before we determine the connection type. Might need to wait
* // prior to doing any api requests as well.
* setTimeout(() => {
* if (Network.type === 'wifi') {
* if (this.network.type === 'wifi') {
* console.log('we got a wifi connection, woohoo!');
* }
* }, 3000);