Toggles the menu between the open and closed states.
()
| 120 | |
| 121 | /** Toggles the menu between the open and closed states. */ |
| 122 | toggleMenu(): void { |
| 123 | return this.menuOpen ? this.closeMenu() : this.openMenu(); |
| 124 | } |
| 125 | |
| 126 | /** Opens the menu. */ |
| 127 | openMenu(): void { |
no test coverage detected