Disable page-content sticky header release when approaching footer.

This commit is contained in:
Konstantinos Triantafyllou 2022-09-20 11:01:51 +03:00
parent 9939c2707c
commit 9d856f4f7d
1 changed files with 2 additions and 1 deletions

View File

@ -90,7 +90,8 @@ export class PageContentComponent implements OnInit, AfterViewInit, OnDestroy {
ngAfterViewInit() {
if (typeof document !== "undefined") {
this.observeBottom();
// TODO make it smooth
// this.observeBottom();
this.observeHeader();
this.observeStickyFooter();
}