Design video update
[oweals/peertube.git] / client / src / app / videos / shared / video-description.component.html
1 <textarea
2   [(ngModel)]="description" (ngModelChange)="onModelChange()"
3   id="description" placeholder="My super video">
4 </textarea>
5
6 <tabset #staticTabs class="previews">
7   <tab heading="Truncated description preview" [innerHTML]="truncatedDescriptionHTML"></tab>
8   <tab heading="Complete description preview" [innerHTML]="descriptionHTML"></tab>
9 </tabset>