aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/assets/player/peertube-videojs-plugin.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-06-08 14:20:43 +0200
committerChocobozzz <me@florianbigard.com>2018-06-08 14:20:43 +0200
commit91d9558963c4eb6e47d74a14ff8d527c6326e0e1 (patch)
tree60655db5747f410fc93fd2535aa96fc12af9ede1 /client/src/assets/player/peertube-videojs-plugin.ts
parentc0f713ce05c26ad01ef06d3b981640d06238186d (diff)
downloadPeerTube-91d9558963c4eb6e47d74a14ff8d527c6326e0e1.tar.gz
PeerTube-91d9558963c4eb6e47d74a14ff8d527c6326e0e1.tar.zst
PeerTube-91d9558963c4eb6e47d74a14ff8d527c6326e0e1.zip
Fix seeking on auto resolution change
Diffstat (limited to 'client/src/assets/player/peertube-videojs-plugin.ts')
-rw-r--r--client/src/assets/player/peertube-videojs-plugin.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts
index f303301d5..e4fea0991 100644
--- a/client/src/assets/player/peertube-videojs-plugin.ts
+++ b/client/src/assets/player/peertube-videojs-plugin.ts
@@ -263,7 +263,7 @@ class PeerTubePlugin extends Plugin {
263 const options = { 263 const options = {
264 forcePlay: false, 264 forcePlay: false,
265 delay, 265 delay,
266 seek: currentTime 266 seek: currentTime + (delay / 1000)
267 } 267 }
268 this.updateVideoFile(newVideoFile, options) 268 this.updateVideoFile(newVideoFile, options)
269 } 269 }
@@ -310,6 +310,7 @@ class PeerTubePlugin extends Plugin {
310 this.player.pause() 310 this.player.pause()
311 this.player.posterImage.show() 311 this.player.posterImage.show()
312 this.player.removeClass('vjs-has-autoplay') 312 this.player.removeClass('vjs-has-autoplay')
313 this.player.removeClass('vjs-has-big-play-button-clicked')
313 314
314 return done() 315 return done()
315 }) 316 })