You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2014/04/23 20:57:01 UTC

[05/37] git commit: corrected typo which leads to a "comma expression"

corrected typo which leads to a "comma expression"

(cherry picked from commit 63007bf335db1b097b29fee528dfbb5b2fb64939)
Signed-off-by: Ian Clelland <ic...@chromium.org>


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/commit/1b11d923
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/1b11d923
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/1b11d923

Branch: refs/heads/master
Commit: 1b11d92372f9beeb032a4e1a4dc5a663c5aa4959
Parents: ee04e5c
Author: Dominik Pesch <d....@11com7.de>
Authored: Sun Mar 2 12:31:10 2014 +0100
Committer: Ian Clelland <ic...@chromium.org>
Committed: Mon Mar 3 12:11:08 2014 -0500

----------------------------------------------------------------------
 www/Entry.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/blob/1b11d923/www/Entry.js
----------------------------------------------------------------------
diff --git a/www/Entry.js b/www/Entry.js
index cda4eb6..858ad67 100644
--- a/www/Entry.js
+++ b/www/Entry.js
@@ -106,9 +106,9 @@ Entry.prototype.moveTo = function(parent, newName, successCallback, errorCallbac
     var fail = errorCallback && function(code) {
         errorCallback(new FileError(code));
     };
-    var fs = this.filesystem // Copy / move op cannot cross filesystems;
+    var fs = this.filesystem, // Copy / move op cannot cross filesystems;
     // source path
-        var srcURL = this.filesystem.__format__(this.fullPath);
+        srcURL = this.filesystem.__format__(this.fullPath),
         // entry name
         name = newName || this.name,
         success = function(entry) {