Skip to content

Instantly share code, notes, and snippets.

@wmfairuz
Forked from coryjthompson/0.js
Created August 27, 2014 15:22
Show Gist options
  • Save wmfairuz/aaf61c74cb9b3cd23c72 to your computer and use it in GitHub Desktop.
Save wmfairuz/aaf61c74cb9b3cd23c72 to your computer and use it in GitHub Desktop.
var fileTransfer = new FileTransfer();
fileTransfer.onprogress = function(result){
var percent = result.loaded / result.total * 100;
percent = Math.round(percent);
console.log('Downloaded: ' + percent + '%');
};
fileTransfer.download(remoteFile, localPath, successCallback, errorCallback);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment