fix(curriculum): remove seed code from dice game step 1 (#55549)

This commit is contained in:
Naomi the Technomancer
2024-07-18 03:04:03 -07:00
committed by GitHub
parent 375333e1ff
commit 6f02cba9db

View File

@@ -374,18 +374,6 @@ input[type="radio"]:disabled + label {
```
```js
const listOfAllDice = document.querySelectorAll(".die");
const scoreInputs = document.querySelectorAll("#score-options input");
const scoreSpans = document.querySelectorAll("#score-options span");
const currentRound = document.getElementById("current-round");
const currentRoundRolls = document.getElementById("current-round-rolls");
const totalScore = document.getElementById("total-score");
const scoreHistory = document.getElementById("score-history");
const rollDiceBtn = document.getElementById("roll-dice-btn");
const keepScoreBtn = document.getElementById("keep-score-btn");
const rulesContainer = document.querySelector(".rules-container");
const rulesBtn = document.getElementById("rules-btn");
--fcc-editable-region--
--fcc-editable-region--