(element: HTMLElement)
| 323 | } |
| 324 | |
| 325 | public showAtElement(element: HTMLElement): void { |
| 326 | this.showWithTrigger(element, () => { |
| 327 | this.menu.showAtPosition({ |
| 328 | x: element.getBoundingClientRect().left, |
| 329 | y: element.getBoundingClientRect().bottom + 4, |
| 330 | }); |
| 331 | }); |
| 332 | } |
| 333 | |
| 334 | private showDateTimePicker(): void { |
| 335 | // Use app from options or plugin |
nothing calls this directly
no test coverage detected