Skip to content

Commit b812019

Browse files
committed
Fix it so that both videos play at the same speed!
It is broken without this fix.
1 parent 6e95a5d commit b812019

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

demos/two-videos.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636

3737
addEvent(togglePlay, 'click', function () {
3838
if (ready) {
39-
video.playbackRate = 0.5;
4039
if (video.paused) {
4140
if (video.ended) {
4241
video.currentTime = 0;
@@ -101,4 +100,4 @@
101100
if (s.length < 2) s = "0" + s;
102101
return s;
103102
}
104-
</script>
103+
</script>

0 commit comments

Comments
 (0)