remove options from footer observer
This commit is contained in:
parent
a358686a3d
commit
ab302e040f
|
@ -135,11 +135,6 @@ export class AppComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
createObservers() {
|
createObservers() {
|
||||||
let options = {
|
|
||||||
root: null,
|
|
||||||
rootMargin: '300px',
|
|
||||||
threshold: 1.0
|
|
||||||
};
|
|
||||||
let intersectionObserver = new IntersectionObserver(entries => {
|
let intersectionObserver = new IntersectionObserver(entries => {
|
||||||
entries.forEach(entry => {
|
entries.forEach(entry => {
|
||||||
if (entry.isIntersecting && this.showQuickContact) {
|
if (entry.isIntersecting && this.showQuickContact) {
|
||||||
|
@ -150,7 +145,7 @@ export class AppComponent {
|
||||||
this.quickContactService.setDisplay(this.showQuickContact);
|
this.quickContactService.setDisplay(this.showQuickContact);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}, options);
|
});
|
||||||
intersectionObserver.observe(this.bottom.nativeElement);
|
intersectionObserver.observe(this.bottom.nativeElement);
|
||||||
this.subscriptions.push(intersectionObserver);
|
this.subscriptions.push(intersectionObserver);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue