Skip to content

Instantly share code, notes, and snippets.

@thisiszoaib
Created January 5, 2021 05:14
Show Gist options
  • Save thisiszoaib/31403c43a4ddbb1cb7256fac46076d39 to your computer and use it in GitHub Desktop.
Save thisiszoaib/31403c43a4ddbb1cb7256fac46076d39 to your computer and use it in GitHub Desktop.
Chips 8
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