]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/misc/help.component.html
Add margin for http fallback display
[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
04ed10b2 16 class="help-tooltip-button"
41f657c5 17 title="Get help"
b1d40cff 18 i18n-title
04ed10b2 19 [popover]="tooltipTemplate"
41f657c5 20 [placement]="tooltipPlacement"
04ed10b2 21 [outsideClick]="true"
2b084d70 22></span>