Ajout d'un loading sur la page Summary

This commit is contained in:
Sébastien André
2020-02-14 10:20:48 +01:00
parent d77067b57e
commit a1adc417bb
4 changed files with 110 additions and 92 deletions

View File

@@ -43,10 +43,10 @@ export class NewJumpComponent implements OnInit {
private serviceDropzone: DropzoneService,
private serviceGear: GearService,
private dateService: DateService
) {}
) { }
ngOnInit() {
this.serviceComm.UpdatedComponentTitle("Add a new jump");
this.serviceComm.UpdatedComponentTitle('Add a new jump');
this.endDate = new Date();
this.beginDate = this.dateService.AddDays(new Date(), -1);
@@ -136,6 +136,6 @@ export class NewJumpComponent implements OnInit {
}
public allDatasLoaded(): boolean {
return this.countDatasLoaded == 4;
return this.countDatasLoaded === 4;
}
}