You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by he...@apache.org on 2012/04/05 21:02:12 UTC

[29/38] docs commit: Fixing syntax error in FileTransfer upload error callback

Fixing syntax error in FileTransfer upload error callback


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

Branch: refs/heads/master
Commit: 440c955c48bf5904e3e92ee1bfe7369407b20aa9
Parents: cfc733d
Author: macdonst <si...@gmail.com>
Authored: Mon Mar 26 16:08:13 2012 -0400
Committer: hermwong <he...@gmail.com>
Committed: Thu Apr 5 10:51:59 2012 -0700

----------------------------------------------------------------------
 .../phonegap/file/filetransfer/filetransfer.md     |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-docs/blob/440c955c/docs/en/edge/phonegap/file/filetransfer/filetransfer.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/phonegap/file/filetransfer/filetransfer.md b/docs/en/edge/phonegap/file/filetransfer/filetransfer.md
index 12de7e2..85cdff5 100644
--- a/docs/en/edge/phonegap/file/filetransfer/filetransfer.md
+++ b/docs/en/edge/phonegap/file/filetransfer/filetransfer.md
@@ -50,7 +50,7 @@ __Quick Example__
 	}
 	
     var fail = function(error) {
-        alert("An error has occurred: Code = " = error.code);
+        alert("An error has occurred: Code = " + error.code);
         console.log("upload error source " + error.source);
         console.log("upload error target " + error.target);
     }
@@ -120,7 +120,7 @@ __Full Example__
             }
             
             function fail(error) {
-                alert("An error has occurred: Code = " = error.code);
+                alert("An error has occurred: Code = " + error.code);
                 console.log("upload error source " + error.source);
                 console.log("upload error target " + error.target);
             }