8.6.0: Don't apply `liveDelay` to `WindowTypes.STATIC` (#351)
๐บ What
Don't apply liveDelay
to WindowTypes.STATIC
, supersedes #301
๐ How
Add a checks for windowType
in getClampedTime()
and use the implementation from getClampedTimeForLive()
for WindowTypes.SLIDING
, the original implementation for WindowTypes.GROWING
, and #301, with seekDurationPadding
, for WindowTypes.STATIC
. Refactored into a single expression with ternary checks preceeding.
๐ See
#301