Handles mouseover events for the menu bar.
(event: MouseEvent)
| 564 | |
| 565 | /** Handles mouseover events for the menu bar. */ |
| 566 | onMouseOver(event: MouseEvent) { |
| 567 | const item = this.inputs.items().find(i => i.element()?.contains(event.target as Node)); |
| 568 | |
| 569 | if (item) { |
| 570 | this.goto(item, {focusElement: this.isFocused()}); |
| 571 | } |
| 572 | } |
| 573 | |
| 574 | /** Handles focusin events for the menu bar. */ |
| 575 | onFocusIn() { |