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

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