()
| 2248 | } |
| 2249 | |
| 2250 | private clearClickTimeouts(): void { |
| 2251 | for (const timeout of this.clickTimeouts.values()) { |
| 2252 | if (timeout) { |
| 2253 | window.clearTimeout(timeout); |
| 2254 | } |
| 2255 | } |
| 2256 | this.clickTimeouts.clear(); |
| 2257 | } |
| 2258 | |
| 2259 | private registerContainerListeners(): void { |
| 2260 | if (!this.itemsContainer || this.containerListenersRegistered) return; |
no test coverage detected