Skip to content

Commit 67f947b

Browse files
committed
time until the quote switches changed to 60s
1 parent f6b634c commit 67f947b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-3/quote-generator/quotes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ autoplayToggle.addEventListener("change", () => {
528528
if (autoplayToggle.checked) {
529529
// Switch is ON
530530
autoplayStatus.innerText = "auto-play: ON";
531-
timerId = setInterval(updateQuote, 5000);
531+
timerId = setInterval(updateQuote, 60000);
532532
} else {
533533
// Switch is OFF
534534
autoplayStatus.innerText = "auto-play: OFF";

0 commit comments

Comments
 (0)