]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/help.component.html
Regroup abuse and blacklisted videos inside "moderation"
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / misc / help.component.html
CommitLineData
8a8e02a4
C
1<ng-template #tooltipTemplate>
2 <ng-template [ngIf]="preHtml">
3 <p [innerHTML]="preHtml"></p>
4 <br />
5 </ng-template>
6
7 <p [innerHTML]="mainHtml"></p>
8
9 <ng-template [ngIf]="postHtml">
10 <br />
11 <p [innerHTML]="postHtml"></p>
12 </ng-template>
13</ng-template>
14
2b084d70 15<span
0f7fedc3 16 role="button"
04ed10b2 17 class="help-tooltip-button"
41f657c5 18 title="Get help"
b1d40cff 19 i18n-title
0f7fedc3 20 [attr.aria-pressed]="isPopoverOpened"
63347a0f 21 [ngbPopover]="tooltipTemplate"
41f657c5 22 [placement]="tooltipPlacement"
0f7fedc3
C
23 (onHidden)="onPopoverHidden()"
24 (onShown)="onPopoverShown()"
2b084d70 25></span>