aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/modal/video-support.component.html
blob: 2a05224a8531bce0f94b64ae0244f00430e9f01e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<ng-template #modal let-hide="close">
  <div class="modal-header">
    <h4 i18n class="modal-title">Support</h4>
    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
  </div>

  <div class="modal-body" [innerHTML]="videoHTMLSupport"></div>

  <div class="modal-footer inputs">
    <span i18n class="action-button action-button-cancel" (click)="hide()">Cancel</span>
  </div>
</ng-template>