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

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