1
0
Fork 0
peertube/client/src/app/shared/forms/markdown-textarea.component...

13 lines
606 B
HTML
Raw Normal View History

<div class="root" [ngStyle]="{ 'flex-direction': flexDirection }">
<textarea
2018-02-20 15:13:05 +00:00
[(ngModel)]="content" (ngModelChange)="onModelChange()"
[ngClass]="classes" [ngStyle]="{ width: textareaWidth, height: textareaHeight, 'margin-right': textareaMarginRight }"
id="description" name="description">
</textarea>
<tabset *ngIf="arePreviewsDisplayed()" class="previews">
2018-06-04 14:21:17 +00:00
<tab *ngIf="truncate !== undefined" i18n-heading heading="Truncated preview" [innerHTML]="truncatedPreviewHTML"></tab>
<tab i18n-heading heading="Complete preview" [innerHTML]="previewHTML"></tab>
</tabset>
</div>