From cb75ea92745af82de331bff18e688d18850ad2ce Mon Sep 17 00:00:00 2001 From: Eric Date: Tue, 14 Nov 2023 14:08:02 -0600 Subject: [PATCH] Website: update animation on homepage image. (#15147) Changes: - Updated the animation in the "ClickOps or DevOps" section of the homepage to only animate once. --- website/assets/js/pages/homepage.page.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/website/assets/js/pages/homepage.page.js b/website/assets/js/pages/homepage.page.js index 8a1e5aab6d..2020460b34 100644 --- a/website/assets/js/pages/homepage.page.js +++ b/website/assets/js/pages/homepage.page.js @@ -53,9 +53,6 @@ parasails.registerPage('homepage', { { // When the image is completly in the user's viewport, add the 'animate' class to it. imageToAnimate.classList.add('animate'); - } else if(imageToAnimate.classList.contains('animate')) { - // When it is no longer in the user's viewport, remove the 'animate' class if it has it. - imageToAnimate.classList.remove('animate'); } }); }