Guest User

Untitled

a guest
Jun 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. @Directive({
  2. selector: '[carousel]'
  3. })
  4. export class CarouselDirective implements OnInit, OnDestroy {
  5. // ...
  6. private _autoplayDelay: number;
  7.  
  8. @Input('carouselWithDelay')
  9. set autoplayDelay(autoplayDelay: number) {
  10. this._autoplayDelay = autoplayDelay;
  11. }
  12.  
  13. get autoplayDelay() {
  14. return this._autoplayDelay || 1000;
  15. }
  16. }
Add Comment
Please, Sign In to add comment