We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4251c18 commit a65ca54Copy full SHA for a65ca54
Sprint-3/alarmclock/alarmclock.js
@@ -4,9 +4,8 @@ let remainingSeconds = 0;
4
function setAlarm() {
5
isPaused = false;
6
const pauseButton = document.getElementById("pause-button");
7
- if (pauseButton) {
+ pauseButton.textContent = "Pause";
8
pauseButton.addEventListener("click", pauseCountDown);
9
- }
10
11
const alarmSetEl = document.getElementById("alarmSet");
12
const timeRemainingEl = document.getElementById("timeRemaining");
0 commit comments