(ev: CustomEvent<{ visible: boolean }>)
| 315 | |
| 316 | @Listen('ionSplitPaneVisible', { target: 'body' }) |
| 317 | onSplitPaneChanged(ev: CustomEvent<{ visible: boolean }>) { |
| 318 | const closestSplitPane = this.el.closest<HTMLIonSplitPaneElement>('ion-split-pane'); |
| 319 | |
| 320 | if (closestSplitPane !== null && closestSplitPane === ev.target) { |
| 321 | this.isPaneVisible = ev.detail.visible; |
| 322 | |
| 323 | this.updateState(); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | @Listen('click', { capture: true }) |
| 328 | onBackdropClick(ev: any) { |
nothing calls this directly
no test coverage detected