Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. @Directive({
  2. selector: 'mat-autocomplete[optionsScroll]'
  3. })
  4. export class OptionsScrollDirective implements OnDestroy {
  5.  
  6. @Input() thresholdPercent = .8;
  7. @Output('optionsScroll') scroll = new EventEmitter<IAutoCompleteScrollEvent>();
  8. _onDestroy = new Subject();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement