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