(element: HTMLElement)
| 2353 | } |
| 2354 | |
| 2355 | public showAtElement(element: HTMLElement): void { |
| 2356 | // Store the document reference from the element to support pop-out windows |
| 2357 | this.targetDoc = element.ownerDocument; |
| 2358 | this.menu.showAtPosition({ |
| 2359 | x: element.getBoundingClientRect().left, |
| 2360 | y: element.getBoundingClientRect().bottom + 4, |
| 2361 | }); |
| 2362 | } |
| 2363 | } |
nothing calls this directly
no test coverage detected