Created
July 2, 2018 11:11
-
-
Save realtomaszkula/9ba2915c66006672623fb249f28a2a3c 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
private _autoplay: boolean; | |
get autoplay(): boolean { | |
return this._autoplay; | |
} | |
@Input() | |
set autoplay(value: boolean) { | |
this._autoplay = coerceBooleanProperty(value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment