diff options
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, 12 insertions, 2 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 b3def01fa..77e0b9256 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.html +++ b/client/src/app/videos/+video-watch/video-watch.component.html | |||
@@ -162,7 +162,12 @@ | |||
162 | </div> | 162 | </div> |
163 | 163 | ||
164 | <div class="video-info-description"> | 164 | <div class="video-info-description"> |
165 | <div class="video-info-description-html" [innerHTML]="videoHTMLDescription"></div> | 165 | <div |
166 | class="video-info-description-html" | ||
167 | [innerHTML]="videoHTMLDescription" | ||
168 | (timestampClicked)="handleTimestampClicked($event)" | ||
169 | timestampRouteTransformer | ||
170 | ></div> | ||
166 | 171 | ||
167 | <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()"> | 172 | <div class="video-info-description-more" *ngIf="completeDescriptionShown === false && video.description?.length >= 250" (click)="showMoreDescription()"> |
168 | <ng-container i18n>Show more</ng-container> | 173 | <ng-container i18n>Show more</ng-container> |
@@ -223,7 +228,12 @@ | |||
223 | </div> | 228 | </div> |
224 | </div> | 229 | </div> |
225 | 230 | ||
226 | <my-video-comments class="border-top" [video]="video" [user]="user"></my-video-comments> | 231 | <my-video-comments |
232 | class="border-top" | ||
233 | [video]="video" | ||
234 | [user]="user" | ||
235 | (timestampClicked)="handleTimestampClicked($event)" | ||
236 | ></my-video-comments> | ||
227 | </div> | 237 | </div> |
228 | 238 | ||
229 | <my-recommended-videos | 239 | <my-recommended-videos |