Skip to content

Commit

Permalink
Fix determination of computedDelays
Browse files Browse the repository at this point in the history
  • Loading branch information
bramus committed Oct 6, 2023
1 parent 8715146 commit 9a728ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proxy-animation.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 9a728ef

Please sign in to comment.