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:56:59 UTC

[03/37] git commit: fixed typo "unterminated statement"

fixed typo "unterminated statement"

(cherry picked from commit f65d5562aa0bedcfa18f97907612d0e17577fb77)
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/259260da
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/tree/259260da
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-file/diff/259260da

Branch: refs/heads/master
Commit: 259260daf95d7693633f6e8d16d9d52ec333468e
Parents: 1b11d92
Author: Dominik Pesch <d....@11com7.de>
Authored: Sun Mar 2 12:39:48 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/259260da/www/Entry.js
----------------------------------------------------------------------
diff --git a/www/Entry.js b/www/Entry.js
index 858ad67..e05793e 100644
--- a/www/Entry.js
+++ b/www/Entry.js
@@ -146,9 +146,9 @@ Entry.prototype.copyTo = 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 callback