Finds the toolbar item associated with a given element.
(element: Element)
| 127 | |
| 128 | /** Finds the toolbar item associated with a given element. */ |
| 129 | private _getItem(element: Element) { |
| 130 | return this._itemPatterns().find(item => item.element()?.contains(element)); |
| 131 | } |
| 132 | } |