From 2c121d22ac1439057059c4036c9d9af1ecdc5b5d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 8 Sep 2020 08:02:34 +1000 Subject: [PATCH] docs: Fix simple typo, transiition -> transition There is a small typo in js/controllers/autoanimate.js. Should read `transition` rather than `transiition`. --- js/controllers/autoanimate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/controllers/autoanimate.js b/js/controllers/autoanimate.js index 22f7e7c..ff74eee 100644 --- a/js/controllers/autoanimate.js +++ b/js/controllers/autoanimate.js @@ -461,7 +461,7 @@ export default class AutoAnimate { pairs.forEach( pair => { - // Disable scale transformations on text nodes, we transiition + // Disable scale transformations on text nodes, we transition // each individual text property instead if( matches( pair.from, textNodes ) ) { pair.options = { scale: false }; @@ -616,4 +616,4 @@ export default class AutoAnimate { } -} \ No newline at end of file +}