v-animate-css icon indicating copy to clipboard operation
v-animate-css copied to clipboard

Hello, I dared to modify your library

Open jorgeortegaceja opened this issue 5 years ago • 0 comments

I had the need to modify your library. Thank you very much for the contribution.

Because I needed to pause an infinite loop add the following lines of code

if (!!betweenIteration) { let state = false; setInterval(function () { if (state == false) { el.classList.remove(classes); state = !state; } else { el.classList.add(classes); state = !state; } }, betweenIteration); }

I added these lines in line 188 of the dist/index.js file

jorgeortegaceja avatar Apr 24 '20 03:04 jorgeortegaceja