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