()
| 279 | } |
| 280 | |
| 281 | private menuChanged() { |
| 282 | /** |
| 283 | * Inform dependent components such as ion-menu-button |
| 284 | * that the menu is ready. Note that we only want to do this |
| 285 | * once the menu has been rendered which is why we check for didLoad. |
| 286 | */ |
| 287 | if (this.didLoad) { |
| 288 | this.ionMenuChange.emit({ disabled: this.disabled, open: this._isOpen }); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | async disconnectedCallback() { |
| 293 | /** |
no outgoing calls
no test coverage detected