aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/animations/blink.js1
-rw-r--r--src/components/topic/topic.test.js2
2 files changed, 1 insertions, 2 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);
diff --git a/src/components/topic/topic.test.js b/src/components/topic/topic.test.js
index ca1abfb..b4071b5 100644
--- a/src/components/topic/topic.test.js
+++ b/src/components/topic/topic.test.js
@@ -105,7 +105,7 @@ describe('Topic component', () => {
.toBeVisible();
});
- test('Should send index and countt to posts', () => {
+ test('Should send index and count to posts', () => {
expect(internals.results.getByTitle('Post 1 of 2 by past_user'))
.toBeVisible();