diff options
Diffstat (limited to 'client/src/app/shared')
-rw-r--r-- | client/src/app/shared/misc/help.component.html | 3 | ||||
-rw-r--r-- | client/src/app/shared/misc/help.component.ts | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/shared/misc/help.component.html b/client/src/app/shared/misc/help.component.html index 2019a4988..3da5701a0 100644 --- a/client/src/app/shared/misc/help.component.html +++ b/client/src/app/shared/misc/help.component.html | |||
@@ -14,7 +14,8 @@ | |||
14 | 14 | ||
15 | <span | 15 | <span |
16 | class="help-tooltip-button" | 16 | class="help-tooltip-button" |
17 | title="Get help" | ||
17 | [popover]="tooltipTemplate" | 18 | [popover]="tooltipTemplate" |
18 | placement="right" | 19 | [placement]="tooltipPlacement" |
19 | [outsideClick]="true" | 20 | [outsideClick]="true" |
20 | ></span> | 21 | ></span> |
diff --git a/client/src/app/shared/misc/help.component.ts b/client/src/app/shared/misc/help.component.ts index 9defd9aa4..0373a63de 100644 --- a/client/src/app/shared/misc/help.component.ts +++ b/client/src/app/shared/misc/help.component.ts | |||
@@ -12,6 +12,7 @@ export class HelpComponent implements OnInit, OnChanges { | |||
12 | @Input() postHtml = '' | 12 | @Input() postHtml = '' |
13 | @Input() customHtml = '' | 13 | @Input() customHtml = '' |
14 | @Input() helpType: 'custom' | 'markdownText' | 'markdownEnhanced' = 'custom' | 14 | @Input() helpType: 'custom' | 'markdownText' | 'markdownEnhanced' = 'custom' |
15 | @Input() tooltipPlacement = 'right' | ||
15 | 16 | ||
16 | mainHtml = '' | 17 | mainHtml = '' |
17 | 18 | ||