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.
This commit is contained in:
Collin Donahue-Oponski 2014-08-19 11:08:20 -06:00
parent 62c132cd90
commit 3532e9be5f
1 changed files with 2 additions and 2 deletions

View File

@ -60,8 +60,8 @@
}, },
"lightspeed": { "lightspeed": {
"lightspeedIn": true, "lightSpeedIn": true,
"lightspeedOut": true "lightSpeedOut": true
}, },
"rotating_entrances": { "rotating_entrances": {