mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-17 18:20:56 +03:00
11 lines
423 B
HTML
11 lines
423 B
HTML
<span class="text" [ngStyle]="{'-webkit-line-clamp': !see_more_active ? line_limit : null}" [innerHTML]="text | linkify"></span>
|
|
<span>
|
|
<a [routerLink]="[]" (click)="toggleSeeMore()">
|
|
<ng-container *ngIf="!see_more_active" i18n="See more">
|
|
See more.
|
|
</ng-container>
|
|
<ng-container *ngIf="see_more_active" i18n="See less">
|
|
See less.
|
|
</ng-container>
|
|
</a>
|
|
</span> |