This commit is contained in:
KANE LAZENI 2026-05-13 17:05:16 +00:00
parent 28ee85b0c4
commit 8a8529aa4d

View File

@ -945,23 +945,6 @@
stopCamera(); stopCamera();
}; };
/*
function startCountdown(seconds, callback) {
let remaining = seconds;
const countdownEl = document.getElementById('countdown');
const interval = setInterval(() => {
countdownEl.textContent = `Redirection dans ${remaining} secondes...`;
remaining--;
if (remaining < 0) {
clearInterval(interval);
callback();
}
}, 1000);
}
*/
</script> </script>
</body> </body>
</html> </html>