Skip to content

Commit

Permalink
bump dependencies, ran prettier on all files
Browse files Browse the repository at this point in the history
  • Loading branch information
Havunen committed Jul 16, 2023
1 parent cff5381 commit 0306065
Show file tree
Hide file tree
Showing 5 changed files with 3,058 additions and 2,326 deletions.
11 changes: 7 additions & 4 deletions docs/animations/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,13 @@ class ShuffleList extends Component {
}
// Shuffle them
for (let i = 0; i < 5; i++) {
setTimeout(() => {
// this.doReassignKeys(e);
this.doMix();
}, 500 + 100 * i);
setTimeout(
() => {
// this.doReassignKeys(e);
this.doMix();
},
500 + 100 * i
);
}
};

Expand Down
Loading

0 comments on commit 0306065

Please sign in to comment.