aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/post-attachment/post-attachment.component.html
blob: 401068c32fdf61c8c89e58c9916dfc341e2f8758 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<figure class="attachment" (click)="toggleShowFull()">
	<summary class="attachment-name">
		{{ fileName }}
	</summary>
	<summary class="attachment-type">
		{{ fileType }}
	</summary>
</figure>

<div class="show-full-attachment" *ngIf="showFull" (click)="toggleShowFull()">
	<img class="attachment-img" *ngIf="isImage" src="{{paramURL}}">
	<a class="attachment-download submit-btn" *ngIf="!isImage" href="{{paramURL}}">Download attachment</a>
	<div class="close"></div>
</div>