-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
26 lines (22 loc) · 890 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
const timerButton = document.querySelector(".go-to-timer");
timerButton.addEventListener("click", () => {
location.href = "./scripts/timer/timer.html";
});
const stopwatchButton = document.querySelector(".go-to-stopwatch");
stopwatchButton.addEventListener("click", () => {
location.href = "./scripts/stopwatch/stopwatch.html";
});
const backgroundclockButton = document.querySelector(".go-to-backgroundclock");
backgroundclockButton.addEventListener("click", () => {
location.href = "./scripts/backgroundclock/backgroundclock.html";
});
const alarmButton = document.querySelector(".go-to-alarm");
alarmButton.addEventListener("click", () => {
location.href = "./scripts/alarm/alarm.html";
});
const globaltimeButton = document.querySelector(".go-to-globaltime");
globaltimeButton.addEventListener("click", () => {
location.href = "./scripts/globaltime/globaltime.html";
});
*/