pace icon indicating copy to clipboard operation
pace copied to clipboard

How to get current progress percent?

Open celorodovalho opened this issue 8 years ago • 2 comments

I need to get the percent of progress of Pace.js, but how?

celorodovalho avatar Oct 26 '17 18:10 celorodovalho

Me too

dungagan avatar Oct 19 '18 10:10 dungagan

From v1.2.2, we can use progress or change events:

Pace.on('progress', function (progress) {
  console.log('Pace progres:  ', progress);
});

Pace.on('change', function (progress) {
  console.log('Pace progres:  ', progress);
})

andreivictor avatar Aug 13 '23 17:08 andreivictor