You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2012/03/28 22:41:46 UTC

git commit: removed space from service name in Network stuff. will need native updates

Updated Branches:
  refs/heads/master b7f788e26 -> d8039257e


removed space from service name in Network stuff. will need native updates


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/d8039257
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/d8039257
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/d8039257

Branch: refs/heads/master
Commit: d8039257e9118ec267423111b1d96a80c215f657
Parents: b7f788e
Author: Fil Maj <ma...@gmail.com>
Authored: Wed Mar 28 13:42:31 2012 -0700
Committer: Fil Maj <ma...@gmail.com>
Committed: Wed Mar 28 13:42:31 2012 -0700

----------------------------------------------------------------------
 lib/common/plugin/network.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/d8039257/lib/common/plugin/network.js
----------------------------------------------------------------------
diff --git a/lib/common/plugin/network.js b/lib/common/plugin/network.js
index 29e1aee..899aab5 100644
--- a/lib/common/plugin/network.js
+++ b/lib/common/plugin/network.js
@@ -53,7 +53,7 @@ var NetworkConnection = function () {
  */
 NetworkConnection.prototype.getInfo = function (successCallback, errorCallback) {
     // Get info
-    exec(successCallback, errorCallback, "Network Status", "getConnectionInfo", []);
+    exec(successCallback, errorCallback, "NetworkStatus", "getConnectionInfo", []);
 };
 
 module.exports = new NetworkConnection();