aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/shared/forms/markdown-textarea.component.html
blob: e8c5ded5b0c64d87da97e389bad971d79f48d480 (plain) (tree)
1
2
3
4
5
6
7
8






                                                                                                                         
                                                          



                                                                                                                             
<div class="root" [ngStyle]="{ 'flex-direction': flexDirection }">
  <textarea
    [(ngModel)]="description" (ngModelChange)="onModelChange()"
    [ngClass]="classes" [ngStyle]="{ width: textareaWidth, height: textareaHeight, 'margin-right': textareaMarginRight }"
    id="description" name="description">
  </textarea>

  <tabset *ngIf="arePreviewsDisplayed()" class="previews">
    <tab *ngIf="truncate !== undefined" heading="Truncated description preview" [innerHTML]="truncatedDescriptionHTML"></tab>
    <tab heading="Complete description preview" [innerHTML]="descriptionHTML"></tab>
  </tabset>
</div>