mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-24 01:59:29 -04:00
10 lines
305 B
HTML
10 lines
305 B
HTML
<ng-container *transloco="let t; read:'spoiler'">
|
|
<div (click)="toggle()" [attr.aria-expanded]="!isCollapsed" class="btn spoiler" tabindex="0">
|
|
@if (isCollapsed) {
|
|
<span>{{t('click-to-show')}}</span>
|
|
} @else {
|
|
<div [innerHTML]="html | safeHtml"></div>
|
|
}
|
|
</div>
|
|
</ng-container>
|