2021-09-27 16:23:41 +01:00
|
|
|
<ion-header class="ion-no-border">
|
|
|
|
|
<ion-toolbar class="d-flex">
|
|
|
|
|
|
|
|
|
|
<div class="d-flex px-20 pt-20">
|
|
|
|
|
<div class="cursor-pointer" (click)="close()">
|
2021-10-25 13:21:48 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " class="font-35" src="assets/images/icons-arrow-arrow-left.svg"></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " class="font-35" src="assets/images/theme/gov/icons-calendar-arrow-left.svg"></ion-icon>
|
2021-09-27 16:23:41 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="font-25">{{ fileName }}</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
|
|
<ion-content class="pt-10 height-100">
|
2021-10-05 15:02:52 +01:00
|
|
|
|
2021-09-27 16:23:41 +01:00
|
|
|
<div *ngIf="pdfSrc" class="height-100">
|
2021-10-05 15:02:52 +01:00
|
|
|
<iframe id="iframe" src="https://equilibrium.dyndns.info/FileShare/pdfjs/web/viewer.html?file=https://equilibrium.dyndns.info/FileShare/merged_fastview.pdf&caches=12321231231f23123" height="100%" width="100%" title="Iframe Example"></iframe>
|
2021-09-27 16:23:41 +01:00
|
|
|
</div>
|
|
|
|
|
</ion-content>
|