You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm submitting a ...
[ ] bug report
[x ] feature request
[ ] question about the decisions made in the repository
Hi guys,
First of all, thanks for library, is really helpful
But, I started using it now and realized the need to pause before finishing.
That is because my server can responding after the bar is complete. And that is not an expected behavior.
To make that work on my project, I changed:
if (_this.progress === 100) {
_this.complete();
}
to:
if (_this.progress === 95) {
_this.stop();
}
And I force myself to use the "slimLoader.complete()" when request is finish.
I hope not offending, but in my experience, that is necessary.
Thanks for attention.
The text was updated successfully, but these errors were encountered:
[ ] bug report
[x ] feature request
[ ] question about the decisions made in the repository
Hi guys,
First of all, thanks for library, is really helpful
But, I started using it now and realized the need to pause before finishing.
That is because my server can responding after the bar is complete. And that is not an expected behavior.
To make that work on my project, I changed:
if (_this.progress === 100) {
_this.complete();
}
to:
if (_this.progress === 95) {
_this.stop();
}
And I force myself to use the "slimLoader.complete()" when request is finish.
I hope not offending, but in my experience, that is necessary.
Thanks for attention.
The text was updated successfully, but these errors were encountered: