mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
Progressbars
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
</ion-toolbar>
|
||||
</ion-header>
|
||||
<ion-content>
|
||||
<ion-progress-bar type="indeterminate" *ngIf="showLoader"></ion-progress-bar>
|
||||
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
||||
<ion-refresher-content
|
||||
pullingIcon="chevron-down-circle-outline"
|
||||
|
||||
@@ -34,7 +34,7 @@ export class AgendaPage implements OnInit {
|
||||
eventsListPessoal: Event[];
|
||||
eventsListOficial: Event[];
|
||||
|
||||
showLoader: boolean = true;
|
||||
showLoader: boolean;
|
||||
|
||||
startTime: Date;
|
||||
endTime: Date;
|
||||
@@ -112,6 +112,7 @@ export class AgendaPage implements OnInit {
|
||||
});
|
||||
this.loading();
|
||||
});
|
||||
this.showLoader = false;
|
||||
}
|
||||
);
|
||||
break;
|
||||
@@ -132,6 +133,7 @@ export class AgendaPage implements OnInit {
|
||||
});
|
||||
this.loading();
|
||||
});
|
||||
this.showLoader = false;
|
||||
}
|
||||
);
|
||||
break;
|
||||
@@ -152,11 +154,11 @@ export class AgendaPage implements OnInit {
|
||||
});
|
||||
this.loading();
|
||||
});
|
||||
this.showLoader = false;
|
||||
}
|
||||
);
|
||||
break;
|
||||
}
|
||||
this.showLoader = false;
|
||||
}
|
||||
|
||||
RefreshEvents(ev: { startTime: Date, endTime: Date }){
|
||||
|
||||
Reference in New Issue
Block a user