aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/shared/video-description.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/videos/shared/video-description.component.html')
-rw-r--r--client/src/app/videos/shared/video-description.component.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/client/src/app/videos/shared/video-description.component.html b/client/src/app/videos/shared/video-description.component.html
new file mode 100644
index 000000000..7a228857c
--- /dev/null
+++ b/client/src/app/videos/shared/video-description.component.html
@@ -0,0 +1,9 @@
1<textarea
2 [(ngModel)]="description" (ngModelChange)="onModelChange()"
3 id="description" class="form-control" 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>