mirror of
https://github.com/olehomelchenko/minivlat-local-ua.git
synced 2025-12-21 21:22:24 +00:00
Fix initial timer duration from 250000 to 25000 milliseconds for accurate quiz timing
This commit is contained in:
@@ -11,7 +11,7 @@ document.addEventListener('DOMContentLoaded', function () {
|
|||||||
let currentQuestionIndex = 0;
|
let currentQuestionIndex = 0;
|
||||||
let score = 0;
|
let score = 0;
|
||||||
let quizResults = [];
|
let quizResults = [];
|
||||||
const initialTimeLeft = 250000; // 25 seconds in milliseconds
|
const initialTimeLeft = 25000; // 25 seconds in milliseconds
|
||||||
let timeLeft = initialTimeLeft;
|
let timeLeft = initialTimeLeft;
|
||||||
let timer;
|
let timer;
|
||||||
let startTime = new Date().toISOString();
|
let startTime = new Date().toISOString();
|
||||||
|
|||||||
Reference in New Issue
Block a user