FIXED: Media Elements Example

Seeking was happening regardless of if a drag was happening
pull/3723/head
Aaron George 6 years ago committed by Conduitry
parent 1ebfdb78c3
commit 231fbfa020

@ -14,7 +14,7 @@
showControlsTimeout = setTimeout(() => showControls = false, 2500);
showControls = true;
if (e.which !== 1) return; // mouse not down
if (!(e.buttons & 1)) return; // mouse not down
if (!duration) return; // video not loaded yet
const { left, right } = this.getBoundingClientRect();
@ -127,4 +127,4 @@
<span class="time">{format(duration)}</span>
</div>
</div>
</div>
</div>

Loading…
Cancel
Save