Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. const elmRef = document.querySelector('.faq-overlay .mat-dialog-container') || document.body;
  2. fromEvent(elmRef, 'scroll')
  3. .pipe(
  4. takeUntil(this.unsubscribe),
  5. debounceTime(200)
  6. )
  7. .subscribe(() => {
  8. this.isScrollButtonVisible = elmRef.scrollTop > 100;
  9. this.cdRef.detectChanges();
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement