From 3532e9be5fc0c5fa9f25bf6b9b5f1ecb4e448391 Mon Sep 17 00:00:00 2001 From: Collin Donahue-Oponski Date: Tue, 19 Aug 2014 11:08:20 -0600 Subject: [PATCH] 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. --- animate-config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/animate-config.json b/animate-config.json index 21e473d..6f258c1 100644 --- a/animate-config.json +++ b/animate-config.json @@ -60,8 +60,8 @@ }, "lightspeed": { - "lightspeedIn": true, - "lightspeedOut": true + "lightSpeedIn": true, + "lightSpeedOut": true }, "rotating_entrances": {