popover icon indicating copy to clipboard operation
popover copied to clipboard

Dynamically add/remove backdropClass

Open weilinzung opened this issue 2 years ago • 0 comments

Currently, there is no way we can dynamically add/remove backdropClass with a condition. It looks like once backDropClass is added, there is no way we can remove it.


addBg() {
this.satPopover.backdropClass = 'test';
}

changeBg() {
this.satPopover.backdropClass = 'test2';
}


removeBg() {
this.satPopover.backdropClass = ''; => replace to empty?
}
 

weilinzung avatar Apr 21 '22 20:04 weilinzung