From e42f4d0079d46105da584614e0bc8f032e150e16 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Sat, 17 Dec 2016 20:52:19 -0500 Subject: [PATCH] Update network.ts --- src/plugins/network.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/network.ts b/src/plugins/network.ts index 0108e2f68..bac159079 100644 --- a/src/plugins/network.ts +++ b/src/plugins/network.ts @@ -29,7 +29,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.connection === 'wifi') { + * if (Network.type === 'wifi') { * console.log('we got a wifi connection, woohoo!'); * } * }, 3000);