Closes the menu and all parent menus.
()
| 439 | |
| 440 | /** Closes the menu and all parent menus. */ |
| 441 | closeAll() { |
| 442 | const root = this.root(); |
| 443 | |
| 444 | if (root instanceof MenuTriggerPattern) { |
| 445 | root.close({refocus: true}); |
| 446 | } |
| 447 | |
| 448 | if (root instanceof MenuBarPattern) { |
| 449 | root.close(); |
| 450 | } |
| 451 | |
| 452 | if (root instanceof MenuPattern) { |
| 453 | root.inputs.activeItem()?.close({refocus: true}); |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | /** Clears any open or close timeouts for sub-menus. */ |
| 458 | _clearTimeouts() { |
no test coverage detected