diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-12-11 11:09:05 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-12-11 11:09:05 +0100 |
commit | 014ad87961cb9a632abdf2dfb5498058aac0dc2b (patch) | |
tree | 4d3f1c3815ca102defd5f1fab4125539b19ebe09 | |
parent | fada8d75550dc7365f7e18ee1569b9406251d660 (diff) | |
download | PeerTube-014ad87961cb9a632abdf2dfb5498058aac0dc2b.tar.gz PeerTube-014ad87961cb9a632abdf2dfb5498058aac0dc2b.tar.zst PeerTube-014ad87961cb9a632abdf2dfb5498058aac0dc2b.zip |
Fix player height on chrome
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html index f99e84caf..e3214a331 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.html +++ b/client/src/app/videos/+video-watch/video-watch.component.html | |||
@@ -1,7 +1,7 @@ | |||
1 | <div class="row"> | 1 | <div class="row"> |
2 | <!-- We need the video container for videojs so we just hide it --> | 2 | <!-- We need the video container for videojs so we just hide it --> |
3 | <div [hidden]="videoNotFound" id="video-container"> | 3 | <div [hidden]="videoNotFound" id="video-container"> |
4 | <video id="video-element" class="video-js vjs-peertube-skin vjs-fluid"></video> | 4 | <video id="video-element" class="video-js vjs-peertube-skin"></video> |
5 | </div> | 5 | </div> |
6 | 6 | ||
7 | <div *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div> | 7 | <div *ngIf="videoNotFound" id="video-not-found">Video not found :'(</div> |