We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
startProgressTimer of the S3MP object isn't working correctly for me. These three lines seem to be the culprit:
startProgressTimer
S3MP
_.each(upload.inprogress,function(val) { done += val; });
console.dir(upload.inprogress) shows that index 0 is undefined
console.dir(upload.inprogress)
The files seem to be uploading fine. My progress meter doesn't work however. Any insights would be most welcome. Thanks.
I changed them to:
_.each(upload.inprogress,function(val) { if(!isNaN(val)) done += val; });
and now it seems to be working. Is this just me?
The text was updated successfully, but these errors were encountered:
Thank you! I had the same problem and this fixed it for me too.
Sorry, something went wrong.
No branches or pull requests
startProgressTimer
of theS3MP
object isn't working correctly for me. These three lines seem to be the culprit:console.dir(upload.inprogress)
shows that index 0 is undefinedThe files seem to be uploading fine. My progress meter doesn't work however. Any insights would be most welcome. Thanks.
I changed them to:
and now it seems to be working. Is this just me?
The text was updated successfully, but these errors were encountered: