Skip to content

Dot's transition is infinite mode has no delay now.

Compare
Choose a tag to compare
@YIZHUANG YIZHUANG released this 08 Apr 20:45
· 415 commits to master since this release

Previously there were delay when you are passing showDots={true} and infinite={true}.
This is because there was a type-checking mistake in the code as the following:

if(!index)

which is now changed to:

if(index !== undefined)

Because index can be 0, and it should be truthy.

The feature is stable now.