From 9a728ef4575a972051ed0a76d7744edeb7a1f57f Mon Sep 17 00:00:00 2001 From: Bramus Date: Fri, 6 Oct 2023 16:03:41 +0200 Subject: [PATCH] Fix determination of computedDelays --- src/proxy-animation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxy-animation.js b/src/proxy-animation.js index 78dede08..f7067f89 100644 --- a/src/proxy-animation.js +++ b/src/proxy-animation.js @@ -674,7 +674,7 @@ function createProxyEffect(details) { // Compute start and end delay to align with start and end times. const startDelay = fractionalStartDelay(details); const endDelay = fractionalEndDelay(details); - const computedDelays = (startDelay != 0) && (endDelay != 0); + const computedDelays = (startDelay != 0) || (endDelay != 0); let totalDuration; // Duration 'auto' case.