This commit is contained in:
Peter Maquiran
2021-09-30 15:56:04 +01:00
parent 37a233caec
commit 7364277d95
21 changed files with 36 additions and 23 deletions
+4 -2
View File
@@ -29,6 +29,7 @@ import { CalendarStore } from 'src/app/store/calendar.service';
import { ListBoxService } from 'src/app/services/agenda/list-box.service';
import { ChangeProfileService } from 'src/app/services/change-profile.service';
@Component({
selector: 'app-agenda',
templateUrl: './agenda.page.html',
@@ -260,13 +261,14 @@ export class AgendaPage implements OnInit {
this.myCal.update();
}
//Go to the previous view of the calendar
back(){
back() {
this.myCal.slidePrev();
this.myCal.loadEvents();
this.myCal.update();
}
//Shows the title of your view
onViewTitleChanged(title){
onViewTitleChanged(title) {
this.viewTitle = title;
}