Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersonMamede authored Apr 28, 2023
1 parent 6f9405f commit 225fdf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/1-indeterminate-basic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ app.on('ready', function() {
progressBar
.on('completed', function() {
console.info(`completed...`);
progressBar.detail = 'Task completed. Exiting...';
progressBar.detail = 'Task completed. Closing...';
})
.on('aborted', function() {
console.info(`aborted...`);
Expand All @@ -24,4 +24,4 @@ app.on('ready', function() {
setTimeout(function() {
progressBar.setCompleted();
}, 3000);
});
});

0 comments on commit 225fdf5

Please sign in to comment.