diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-06-05 12:20:25 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-06-05 12:20:53 +0200 |
commit | 3ad109e44916e82709ac0016f1f9c31c860299c9 (patch) | |
tree | bec707edbc5379fa1f6c08c05ce319fae32e7586 /client/src/app/videos/video-watch/video-watch.component.html | |
parent | 1d1b7891b4cdc0c8a3ed4ec125a1ab673e6496b1 (diff) | |
download | PeerTube-3ad109e44916e82709ac0016f1f9c31c860299c9.tar.gz PeerTube-3ad109e44916e82709ac0016f1f9c31c860299c9.tar.zst PeerTube-3ad109e44916e82709ac0016f1f9c31c860299c9.zip |
Add an alert if the video load seems to be too long
Diffstat (limited to 'client/src/app/videos/video-watch/video-watch.component.html')
-rw-r--r-- | client/src/app/videos/video-watch/video-watch.component.html | 14 |
1 files changed, 14 insertions, 0 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 353cb2241..047990362 100644 --- a/client/src/app/videos/video-watch/video-watch.component.html +++ b/client/src/app/videos/video-watch/video-watch.component.html | |||
@@ -1,3 +1,17 @@ | |||
1 | <div *ngIf="error" class="alert alert-danger"> | ||
2 | The video load seems to be abnormally long. You could: | ||
3 | <ul> | ||
4 | <li>Check your browser console to see potentials errors</li> | ||
5 | <li>Your firewall or NAT could be too restrictive for WebRTC (there is no TURN server)</li> | ||
6 | <li> | ||
7 | Report an issue on | ||
8 | <a href="https://github.com/Chocobozzz/PeerTube/issues" title="Report an issue"> | ||
9 | https://github.com/Chocobozzz/PeerTube/issues | ||
10 | </a> | ||
11 | </li> | ||
12 | </ul> | ||
13 | </div> | ||
14 | |||
1 | <div class="embed-responsive embed-responsive-19by9"> | 15 | <div class="embed-responsive embed-responsive-19by9"> |
2 | <my-loader [loading]="loading"></my-loader> | 16 | <my-loader [loading]="loading"></my-loader> |
3 | </div> | 17 | </div> |