Skip to content

Commit 3532e9b

Browse files
committed
Tiny typo in animate-config.json
The filenames are case-sensitive, right? Found the issue because I copied all the classNames from this file so that I could apply random animations in my JS. The `"animationend"` callbacks failed once in a while - found it was because the `lightSpeedIn` and `lightSpeedOut` didn't have the same case in this file vs. in `animate.css`, so the CSS animations were never getting triggered, thus no `"animationend"` event.. Also, looking at the Gruntfile, and the `lightSpeedIn.css` and `lightSpeedOut.css` filenames, it looks like this file needs to be corrected anyway. Hopefully this will help people avoid the bug I created, and also improve the build script.
1 parent 62c132c commit 3532e9b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

animate-config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
},
6161

6262
"lightspeed": {
63-
"lightspeedIn": true,
64-
"lightspeedOut": true
63+
"lightSpeedIn": true,
64+
"lightSpeedOut": true
6565
},
6666

6767
"rotating_entrances": {

0 commit comments

Comments
 (0)