Skip to content

Instantly share code, notes, and snippets.

@nufaylr
Forked from coryjthompson/0.js
Last active October 13, 2015 08:16
Show Gist options
  • Save nufaylr/ff4fc8eb75de9bbbb93c to your computer and use it in GitHub Desktop.
Save nufaylr/ff4fc8eb75de9bbbb93c 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