change name

This commit is contained in:
Liz 2024-10-14 17:10:40 -04:00 committed by GitHub
parent e55e84ce5b
commit a65cc9f6b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -19,8 +19,8 @@
<div id="controls">
<!-- <button class="btn-danger-outline" name="changegame" onclick="countdown(1500);"></button> -->
<button class="btn-success-outline" name="shortBreak" onclick="countdown(600);">10 Min Timer</button>
<button class="btn-secondary-outline" name="longBreak" onclick="countdown(900);">15 Min Timer</button>
<button class="btn-success-outline" name="shortBreak" onclick="countdown(600);">10 Min</button>
<button class="btn-secondary-outline" name="longBreak" onclick="countdown(900);">15 Min</button>
<button class="btn-block btn-primary-outline" name="stop" onclick="stopTimer();">STOP</button>
</div>
@ -30,7 +30,7 @@
</div>
<footer>
<a href="https://github.com/BinaryDigitDev/game-timer">Code</a>
<a href="https://github.com/BinaryDigitDev/gametimer">Code</a>
</footer>
</body>
</html>

View File

@ -6,7 +6,7 @@ function publishTimer(timer) {
const timerElement = document.getElementById("timerText");
timerElement.innerHTML = timer;
document.title = "[" + timer + "] Pomodoro Timer";
document.title = "[" + timer + "] Timer";
}
function stopTimer() {