CodeByZach / pace

Automatically add a progress bar to your site.
https://codebyzach.github.io/pace/
MIT License
15.68k stars 1.9k forks source link

Class pace-done added to body multiple times #515

Open matt-snider opened 3 years ago

matt-snider commented 3 years ago

Hi there,

Thanks for this great library! It looks great and works very well, although I am having one minor issue.

Recently I noticed that on each navigation or request, the pace-done class is being added to body and not properly cleared on the next run. This doesn't affect the functionality, but over time, many duplicate instances of this class accumulate.

screenshot-2021-02-25T11:30:43

The fact that no one else has reported this leads me to believe that I might be making a mistake, or there is some issue specific to my setup. But I guess we'll see if anyone else reports the same behaviour. I'm hoping that someone might have some idea what could be causing this.

Some information that might be helpful:

wsteven24 commented 3 years ago

Same issue over here. I'm using v1.2.4 image

michaelthedev commented 2 years ago

Having the same issue also. Keeps adding unnecessary spaces too image

SlavaEgorov commented 2 years ago

Same for me

browniebraun commented 2 years ago

There is a pipe within the search pattern to replace pace-done by class pace-running which should not be in.

Replace line 276: document.body.className = document.body.className.replace(/(pace-done )|/, 'pace-running ');

by

document.body.className = document.body.className.replace(/(pace-done )/, 'pace-running ');

Afterwards it will stop that nasty misbehavior.

Regards -Andi

matt-snider commented 2 years ago

@browniebraun Would you like to open a PR with this change?