diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-22 00:19:58 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-04-22 00:19:58 +0200 |
| commit | a7500d5b46ad519c9e9a84a342e469bdac0def7a (patch) | |
| tree | c3a857672c25a24cb06ebb9d45f5a31d2ae8c10a /src/animations | |
| parent | 8ae7249a5bb12f23d402f0ede32956827de4e111 (diff) | |
Remove commented code + fix ttypo
Diffstat (limited to 'src/animations')
| -rw-r--r-- | src/animations/blink.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/animations/blink.js b/src/animations/blink.js index acf0dda..ca21382 100644 --- a/src/animations/blink.js +++ b/src/animations/blink.js @@ -13,7 +13,6 @@ export const blink = function blink(node, params) { const halfWidth = originalWidth / 2; const halfHeight = originalHeight / 2; - // const padding = t < 0.8 ? halfWidth * (1 - t) / 0.8 : halfWidth / 2 + 1; const height = Math.round(t <= 0.2 ? (originalHeight * t) / 0.2 : originalHeight); const marginY = Math.round(t <= 0.2 ? halfHeight * (1 - t / 0.2) : 0); const width = Math.round(t > 0.2 ? ((t - 0.2) / 0.8) * originalWidth : 0); |