dependency upgrades, server and platform module updates, linting wip

This commit is contained in:
William Welling
2017-07-12 14:33:16 -05:00
parent afc39022f8
commit c08f5c672b
190 changed files with 6321 additions and 4703 deletions

View File

@@ -6,10 +6,10 @@ import { DomSanitizer } from '@angular/platform-browser';
* only use this when you are sure the URL is indeed safe
*/
@Pipe({name: 'dsSafeUrl'})
@Pipe({ name: 'dsSafeUrl' })
export class SafeUrlPipe implements PipeTransform {
constructor(private domSanitizer: DomSanitizer) {}
transform(url) {
return this.domSanitizer.bypassSecurityTrustResourceUrl(url);
}
}
constructor(private domSanitizer: DomSanitizer) { }
transform(url) {
return this.domSanitizer.bypassSecurityTrustResourceUrl(url);
}
}