diff options
author | Chocobozzz <me@florianbigard.com> | 2017-12-20 11:05:10 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2017-12-20 11:05:10 +0100 |
commit | 8fa5653ad8bebed9a1b2a649e8ea160184d52408 (patch) | |
tree | eb71b80545a89d73e9b0ef09c695b509360da85c /client/src/assets | |
parent | 15ca2e871aa069e596baf9da22b3d2a1ab1a0b1a (diff) | |
download | PeerTube-8fa5653ad8bebed9a1b2a649e8ea160184d52408.tar.gz PeerTube-8fa5653ad8bebed9a1b2a649e8ea160184d52408.tar.zst PeerTube-8fa5653ad8bebed9a1b2a649e8ea160184d52408.zip |
Add transition on play/loading player
Diffstat (limited to 'client/src/assets')
-rw-r--r-- | client/src/assets/player/peertube-videojs-plugin.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts index 8c131c9e9..ca2b9a724 100644 --- a/client/src/assets/player/peertube-videojs-plugin.ts +++ b/client/src/assets/player/peertube-videojs-plugin.ts | |||
@@ -263,7 +263,7 @@ const peertubePlugin = function (options: PeertubePluginOptions) { | |||
263 | const isPaused = player.paused() | 263 | const isPaused = player.paused() |
264 | 264 | ||
265 | // Hide bigPlayButton | 265 | // Hide bigPlayButton |
266 | if (!isPaused && this.player_.options_.bigPlayButton) { | 266 | if (!isPaused) { |
267 | this.player_.bigPlayButton.hide() | 267 | this.player_.bigPlayButton.hide() |
268 | } | 268 | } |
269 | 269 | ||