Last active
January 1, 2016 13:49
-
-
Save digilord/8154137 to your computer and use it in GitHub Desktop.
Tough Futures question
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
put.on('progress',function(progress){ | |
// Update SOMETHING with the progress data | |
Meteor.bindEnvironment(function(){ | |
S3files.update({file_name: file.name}, {$set: {percent_uploaded: progress.percent}}); | |
},function(err){ | |
console.log(err); | |
}); | |
}); |
sixolet
commented
Dec 27, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment