]> git.r.bdr.sh - rbdr/forum/commitdiff
Remove commented code + fix ttypo
authorRuben Beltran del Rio <redacted>
Wed, 21 Apr 2021 22:19:58 +0000 (00:19 +0200)
committerRuben Beltran del Rio <redacted>
Wed, 21 Apr 2021 22:19:58 +0000 (00:19 +0200)
src/animations/blink.js
src/components/topic/topic.test.js

index acf0dda3e493bb85f6cfa0fbc0036d6fae268c7f..ca213822ec82f856d056da08e0a618d999073598 100644 (file)
@@ -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);
index ca1abfbaa4958e8a3a518f1c9bed1cb7c3e2119f..b4071b5ef1410f9f30e34825a93f6e21ae09b795 100644 (file)
@@ -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();