diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-18 23:39:07 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2019-12-18 23:39:11 +0100 |
commit | 96f6278f3e5b35d6e812176c799088f88729a0b0 (patch) | |
tree | 6231a912cbe8b7165c72bdbad7cdba079bc0212d /client/src/assets/player/bezels | |
parent | 9650937374f7ac9f884a95a465f8c8c8c966bf71 (diff) | |
download | PeerTube-96f6278f3e5b35d6e812176c799088f88729a0b0.tar.gz PeerTube-96f6278f3e5b35d6e812176c799088f88729a0b0.tar.zst PeerTube-96f6278f3e5b35d6e812176c799088f88729a0b0.zip |
respect video history on explicit playlist click
also correct font-weight for .title-page-single, and tooltip dynamic
text for playlist loop button.
fixes #1889
Diffstat (limited to 'client/src/assets/player/bezels')
-rw-r--r-- | client/src/assets/player/bezels/bezels-plugin.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/assets/player/bezels/bezels-plugin.ts b/client/src/assets/player/bezels/bezels-plugin.ts index 4317d60f9..c2c251961 100644 --- a/client/src/assets/player/bezels/bezels-plugin.ts +++ b/client/src/assets/player/bezels/bezels-plugin.ts | |||
@@ -43,7 +43,7 @@ class PauseBezel extends Component { | |||
43 | this.options_ = options | 43 | this.options_ = options |
44 | 44 | ||
45 | player.on('pause', (_: any) => { | 45 | player.on('pause', (_: any) => { |
46 | if (player.seeking()) return | 46 | if (player.seeking() || player.ended()) return |
47 | this.container.innerHTML = getPauseBezel() | 47 | this.container.innerHTML = getPauseBezel() |
48 | this.showBezel() | 48 | this.showBezel() |
49 | }) | 49 | }) |