Skip to content

v1.1.1

Compare
Choose a tag to compare
@joshwcomeau joshwcomeau released this 24 Feb 04:17
· 267 commits to master since this release

Fix perf issue with onFinish callbacks

Internally, to fire a provided onFinish callback, I was binding a listener to the transitionEnd event. Negligently, I forgot to un-bind that listener once the transition completed!

This means that each animation incremented the number of times the onFInish callback was executed - not good at all.

Credit to @IamNotUrKitty to finding, testing, and fixing the issue =D