CB-5466: Update FileTransfer plugin to accept filesystem urls

This commit is contained in:
Ian Clelland
2013-11-22 09:40:56 -05:00
parent 60f96e078b
commit 2f1411f5dc
3 changed files with 71 additions and 60 deletions
+1
View File
@@ -184,6 +184,7 @@ FileTransfer.prototype.download = function(source, target, successCallback, erro
entry.isFile = result.isFile;
entry.name = result.name;
entry.fullPath = result.fullPath;
entry.filesystem = new FileSystem(result.filesystem == window.PERSISTENT ? 'persistent' : 'temporary');
successCallback(entry);
}
};