player
player copied to clipboard
vds-time-slider should update while scrubbing
When scrubbing through the video using TimeSlider
(I'm using React if that matters) the --vds-slider-fill-percent
css var isn't updated until I lift the mouse button.
You can get around this issue by using this css
vds-time-slider[dragging] .slider-track.fill {
width: var(--vds-pointer-percent);
}
This makes it use the cursor pointer percent while dragging.
We'll be implementing a separate track for seeking while dragging. I'll open a new issue up for it.