Use ng2-pdf-viewer

And remove now-unused safeUrl pipe
This commit is contained in:
Michael Shamoon
2020-12-11 14:22:02 -08:00
parent fdcbf9c75c
commit 963043d8e9
7 changed files with 78 additions and 39 deletions

View File

@@ -1,19 +0,0 @@
import { Pipe, PipeTransform } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
@Pipe({
name: 'safe'
})
export class SafePipe implements PipeTransform {
constructor(private sanitizer: DomSanitizer) { }
transform(url) {
if (url == null) {
return this.sanitizer.bypassSecurityTrustResourceUrl("")
} else {
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
}
}
}