Update templates/index.html
Browse files- templates/index.html +2 -1
templates/index.html
CHANGED
|
@@ -407,7 +407,8 @@
|
|
| 407 |
}
|
| 408 |
|
| 409 |
function startCooldown() {
|
| 410 |
-
|
|
|
|
| 411 |
localStorage.setItem('mariamCooldownEndTime', cooldownEndTime.toString());
|
| 412 |
startCooldownTimer();
|
| 413 |
}
|
|
|
|
| 407 |
}
|
| 408 |
|
| 409 |
function startCooldown() {
|
| 410 |
+
// MODIFICATION ICI : Remplacement de 15 minutes par 7 minutes
|
| 411 |
+
cooldownEndTime = Date.now() + 7 * 60 * 1000;
|
| 412 |
localStorage.setItem('mariamCooldownEndTime', cooldownEndTime.toString());
|
| 413 |
startCooldownTimer();
|
| 414 |
}
|