docs: Fix simple typo, transiition -> transition

There is a small typo in js/controllers/autoanimate.js.

Should read `transition` rather than `transiition`.
master
Tim Gates 2020-09-08 08:02:34 +10:00
parent 15815efe05
commit 2c121d22ac
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05
1 changed files with 2 additions and 2 deletions

View File

@ -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 {
}
}
}