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
the complete callback is not called, it seems that you did not implemented it in your source code
start(onCompleted:Function=null){// Stop current timerthis.stop();// Make it visible for surethis.visible=true;// Run the timer with milliseconds itervalthis._intervalCounterId=setInterval(()=>{// Increment the progress and update view componentthis.progress++;// If the progress is 100% - call completeif(this.progress===100){this.complete();}},this.interval);}
The text was updated successfully, but these errors were encountered:
This is not done yet , i too had the same problem. But in my case i dont want to do anything after that , perhaps you can include an EventEmitter in his code.
gotten a way around it, subscribed to thethis._loadingBar.events.subscribe(item => console.log(item)); then if it is of progress we can check the percentage and then check if it is 100% or not
When using this construction:
the complete callback is not called, it seems that you did not implemented it in your source code
The text was updated successfully, but these errors were encountered: