mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
13 lines
524 B
HTML
13 lines
524 B
HTML
<div>
|
|
<a href="javascript:void(0);"
|
|
role="button"
|
|
(click)="onClick()"
|
|
[attr.aria-label]="((buttonDisabled$ | async) ? 'nav.context-help-toggle-disabled' : 'nav.context-help-toggle') | translate"
|
|
[title]="((buttonDisabled$ | async) ? 'nav.context-help-toggle-disabled' : 'nav.context-help-toggle') | translate"
|
|
>
|
|
<i class="fas fa-lg fa-fw fa-question-circle"
|
|
[class]="(buttonDisabled$ | async) ? 'ds-context-help-toggle-disabled' : 'ds-context-help-toggle-enabled'"
|
|
></i>
|
|
</a>
|
|
</div>
|