Add timeline auto scroll

This commit is contained in:
2021-02-01 17:00:01 +01:00
parent 516e2e4f8b
commit 394b006468
5 changed files with 56 additions and 5 deletions
+9 -1
View File
@@ -9,7 +9,15 @@ import { SearchPage } from 'src/app/pages/search/search.page';
})
export class HeaderPage implements OnInit {
constructor(private modalController: ModalController) { }
profile: string = 'mdgpr';
constructor(private modalController: ModalController) {
window['header'] = (profile:string) => {
this.profile = profile;
}
}
ngOnInit() {
}