-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
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
Show "Processing" when waiting for server response #729
Labels
Comments
Thanks for quick response! But the new implementation has some errors(see comments) |
Second commit(with "101" magic number 😕) almost works. Replacement is a bit wrong, fix: $el.html( template.replace('{percent}', pctLimit).replace('{percent}', pctLimit).replace('{percent}%', self.msgUploadThreshold) ); |
Thx, checked last commit in my current project. All works. But, I checked only one file upload at once, not in batch. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uploading progress bar shows only number of bytes transferred to server.
But in some cases server do manipulations with file, and it also takes some time. Meanwhile upload progress shows 100%. It is confusing for user experience.
I propose not to show 100%-progress until file completely processed by server.
link to draft implementation
In this implementation, I use "Freeze Threshold" == 95%. When uploading reaches this threshold, progress bar freezes and shows "Processing" message. If file completely processed by server, it will show 100%.
The text was updated successfully, but these errors were encountered: