Levent Arman Özak
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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(); |
|
|
|
} |
|
|
|
} |
|
|
|
|