()
| 60 | } |
| 61 | |
| 62 | function wireStemChoiceButtons() { |
| 63 | refreshStemChoiceVisuals(); |
| 64 | for (const btn of document.querySelectorAll(".stem-choice[data-stem]")) { |
| 65 | btn.addEventListener("click", () => handleStemChoiceClick(btn.dataset.stem)); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | function wireAllButton() { |
| 70 | const allBtn = document.getElementById("stemAllBtn"); |
no test coverage detected