()
| 155 | } |
| 156 | |
| 157 | private close(): void { |
| 158 | this.isOpen = false; |
| 159 | this.popover.classList.remove('open'); |
| 160 | this.trigger.setAttribute('aria-expanded', 'false'); |
| 161 | document.removeEventListener('mousedown', this.outsideClick, true); |
| 162 | document.removeEventListener('keydown', this.onKey, true); |
| 163 | } |
| 164 | |
| 165 | dispose(): void { |
| 166 | this.close(); |
no test coverage detected