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

                                                                  


                                                                                                                           

             
                                                          

                                                                                                             

           
<div class="root" [ngStyle]="{ 'flex-direction': flexDirection }">
  <textarea
      [(ngModel)]="content" (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 preview" [innerHTML]="truncatedPreviewHTML"></tab>
    <tab heading="Complete preview" [innerHTML]="previewHTML"></tab>
  </tabset>
</div>