()
| 15303 | startInteraction() |
| 15304 | |
| 15305 | function startInteraction() { |
| 15306 | document.addEventListener("click", handleMouseClick) |
| 15307 | document.addEventListener("keydown", handleKeyPress) |
| 15308 | } |
| 15309 | |
| 15310 | function stopInteraction() { |
| 15311 | document.removeEventListener("click", handleMouseClick) |