()
| 231 | } |
| 232 | |
| 233 | private close() { |
| 234 | if (!this.isOpen) return; |
| 235 | this.isOpen = false; |
| 236 | this.selectEl.removeClass("is-open"); |
| 237 | |
| 238 | if (this.dropdownEl) { |
| 239 | this.dropdownEl.addClass("is-hidden"); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | private renderDropdown() { |
| 244 | if (!this.dropdownEl) return; |
no outgoing calls
no test coverage detected