mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
9 lines
455 B
HTML
9 lines
455 B
HTML
<span class="truncate" [style.max-width]="maxWidth ? maxWidth + 'px' : null">
|
|
<ng-container *ngIf="!rtl">
|
|
<span class="first">{{text.slice(0,-lastChars)}}</span><span class="last-four">{{text.slice(-lastChars)}}</span>
|
|
</ng-container>
|
|
<ng-container *ngIf="rtl">
|
|
<span class="first">{{text.slice(lastChars)}}</span><span class="last-four">{{text.slice(0,lastChars)}}</span>
|
|
</ng-container>
|
|
<ng-content></ng-content>
|
|
</span>
|