Last active
June 24, 2018 15:05
-
-
Save realtomaszkula/3ad9956a6b2cef258d0cb8e009df99cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Directive({ | |
selector: '[carousel]' | |
}) | |
export class CarouselDirective implements OnInit, OnDestroy { | |
// ... | |
private _autoplayDelay: number; | |
@Input('carouselWithDelay') | |
set autoplayDelay(autoplayDelay: number) { | |
this._autoplayDelay = autoplayDelay; | |
} | |
get autoplayDelay() { | |
return this._autoplayDelay || 1000; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment