aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-edit/shared/video-description.component.html
blob: 989292c47630a9fead5a9ab7d21f8ef7cb2ff3cf (plain) (blame)
1
2
3
4
5
6
7
8
9
<textarea
  [(ngModel)]="description" (ngModelChange)="onModelChange()"
  id="description" name="description">
</textarea>

<tabset *ngIf="arePreviewsDisplayed()" #staticTabs class="previews">
  <tab heading="Truncated description preview" [innerHTML]="truncatedDescriptionHTML"></tab>
  <tab heading="Complete description preview" [innerHTML]="descriptionHTML"></tab>
</tabset>