()
| 217 | } |
| 218 | |
| 219 | componentWillLoad() { |
| 220 | this.inToolbar = !!this.el.closest('ion-buttons'); |
| 221 | this.inListHeader = !!this.el.closest('ion-list-header'); |
| 222 | this.inItem = !!this.el.closest('ion-item') || !!this.el.closest('ion-item-divider'); |
| 223 | this.inheritedAttributes = inheritAriaAttributes(this.el); |
| 224 | } |
| 225 | |
| 226 | private get hasIconOnly() { |
| 227 | return !!this.el.querySelector('[slot="icon-only"]'); |
nothing calls this directly
no test coverage detected