Last active
September 19, 2019 02:13
-
-
Save benald/3be21dc99c14de25c9a351cd058028d0 to your computer and use it in GitHub Desktop.
This file contains 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
HTML: | |
<button type="button" class="uk-button" (click)="toggleControls()" [class.active]="show">toggle Controls</button> | |
TS: | |
// Define property in Component Class | |
public show = false; | |
// Define Toggle Function | |
toggleControls() { | |
this.show = !this.show; | |
console.log(this.show); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment