()
| 35 | @Prop({ mutable: true }) activated = false; |
| 36 | @Watch('activated') |
| 37 | activatedChanged() { |
| 38 | const activated = this.activated; |
| 39 | const fab = this.getFab(); |
| 40 | if (fab) { |
| 41 | fab.activated = activated; |
| 42 | } |
| 43 | Array.from(this.el.querySelectorAll('ion-fab-list')).forEach((list) => { |
| 44 | list.activated = activated; |
| 45 | }); |
| 46 | } |
| 47 | |
| 48 | componentDidLoad() { |
| 49 | if (this.activated) { |
no test coverage detected