]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/help.component.html
Add ability to list all local videos on client
[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"
bc144e16 18 container="body"
41f657c5 19 title="Get help"
b1d40cff 20 i18n-title
0f7fedc3 21 [attr.aria-pressed]="isPopoverOpened"
63347a0f 22 [ngbPopover]="tooltipTemplate"
41f657c5 23 [placement]="tooltipPlacement"
0bd84f8b 24 [autoClose]="true"
0f7fedc3
C
25 (onHidden)="onPopoverHidden()"
26 (onShown)="onPopoverShown()"
2b084d70 27></span>