Docfile commited on
Commit
8c2dbb2
·
verified ·
1 Parent(s): c1405db

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +2 -1
templates/index.html CHANGED
@@ -407,7 +407,8 @@
407
  }
408
 
409
  function startCooldown() {
410
- cooldownEndTime = Date.now() + 15 * 60 * 1000;
 
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
  }