From 2177cd0a3977d0454d532cbcf45a9d2530c78a43 Mon Sep 17 00:00:00 2001 From: macdonst Date: Wed, 18 May 2011 03:02:45 +0800 Subject: [PATCH] Moving navigator.connection to navigator.device.connection Android 2.2 introduces the navigation.connection interface but it does not work properly in WebView. So in order to get the proper connection information we had to implement our own connection interface which is accessible at navigator.network.connection. --- framework/assets/js/network.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/framework/assets/js/network.js b/framework/assets/js/network.js index 5d8a9fcb..a57d7725 100755 --- a/framework/assets/js/network.js +++ b/framework/assets/js/network.js @@ -105,13 +105,8 @@ PhoneGap.addConstructor(function() { if (typeof navigator.network === "undefined") { navigator.network = new Network(); } - // No native connection object for Android 2.1 or earlier, so use PhoneGap connection - if (typeof navigator.connection === "undefined") { - navigator.connection = new Connection(); + if (typeof navigator.network.connection === "undefined") { + navigator.network.connection = new Connection(); } - // If Android 2.2+ then fire the connection ready event - else { - PhoneGap.onPhoneGapConnectionReady.fire(); - } }); };