Browse Source

add parentheses to forkJoin

pull/3701/head
Levent Arman Özak 6 years ago
committed by GitHub
parent
commit
5a7d399901
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      templates/module/angular/src/app/app.component.ts

4
templates/module/angular/src/app/app.component.ts

@ -13,13 +13,13 @@ export class AppComponent implements OnInit {
constructor(private lazyLoadService: LazyLoadService) {}
ngOnInit() {
forkJoin(
forkJoin([
this.lazyLoadService.load(
LOADING_STRATEGY.PrependAnonymousStyleToHead('fontawesome-v4-shims.min.css'),
),
this.lazyLoadService.load(
LOADING_STRATEGY.PrependAnonymousStyleToHead('fontawesome-all.min.css'),
),
).subscribe();
]).subscribe();
}
}

Loading…
Cancel
Save