Created
January 5, 2021 05:14
-
-
Save thisiszoaib/31403c43a4ddbb1cb7256fac46076d39 to your computer and use it in GitHub Desktop.
Chips 8
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
disabled = false; | |
setDisabledState?(isDisabled: boolean): void { | |
this.disabled = isDisabled; | |
} | |
toggleSelection(chip: MatChip) { | |
if (!this.disabled) chip.toggleSelected(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment