Fix idle time min value
All checks were successful
Deploy new version of the application / Deploy Application (push) Successful in 2s
All checks were successful
Deploy new version of the application / Deploy Application (push) Successful in 2s
This commit is contained in:
@@ -58,7 +58,7 @@ function idle() {
|
|||||||
let cardIndex = 0;
|
let cardIndex = 0;
|
||||||
setInterval(function() {
|
setInterval(function() {
|
||||||
idleTime+=2;
|
idleTime+=2;
|
||||||
if (idleTime > 1) {
|
if (idleTime > 60) {
|
||||||
openCard(cards, cardIndex++ % cards.length);
|
openCard(cards, cardIndex++ % cards.length);
|
||||||
}
|
}
|
||||||
}, 10000);
|
}, 10000);
|
||||||
|
|||||||
Reference in New Issue
Block a user