* Open the attached menu at the specified location. * @param coordinates where to open the context menu
(coordinates: ContextMenuCoordinates)
| 86 | * @param coordinates where to open the context menu |
| 87 | */ |
| 88 | open(coordinates: ContextMenuCoordinates) { |
| 89 | this._open(null, coordinates); |
| 90 | this._changeDetectorRef.markForCheck(); |
| 91 | } |
| 92 | |
| 93 | /** Close the currently opened context menu. */ |
| 94 | close() { |
nothing calls this directly
no test coverage detected