Adapt contest logging

pull/2632/head
phl0 2023-10-27 10:13:11 +02:00
rodzic 5368ef25f3
commit e0c35aa0cf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 48EA1E640798CA9A
1 zmienionych plików z 16 dodań i 10 usunięć

Wyświetl plik

@ -68,19 +68,11 @@ function setSession(formdata) {
// realtime clock
if ( ! manual ) {
$(function ($) {
var options = {
utc: true,
format: '%H:%M:%S'
}
$('.input_time').jclock(options);
handleStart = setInterval(function() { getUTCTimeStamp($('.input_time')); }, 500);
});
$(function ($) {
var options = {
utc: true,
format: '%d-%m-%Y'
}
$('.input_date').jclock(options);
handleDate = setInterval(function() { getUTCDateStamp($('.input_date')); }, 1000);
});
}
@ -572,3 +564,17 @@ function pad (str, max) {
str = str.toString();
return str.length < max ? pad("0" + str, max) : str;
}
function getUTCTimeStamp(el) {
var now = new Date();
var localTime = now.getTime();
var utc = localTime + (now.getTimezoneOffset() * 60000);
$(el).attr('value', ("0" + now.getUTCHours()).slice(-2)+':'+("0" + now.getUTCMinutes()).slice(-2)+':'+("0" + now.getUTCSeconds()).slice(-2));
}
function getUTCDateStamp(el) {
var now = new Date();
var localTime = now.getTime();
var utc = localTime + (now.getTimezoneOffset() * 60000);
$(el).attr('value', ("0" + now.getUTCDate()).slice(-2)+'-'+("0" + (now.getUTCMonth()+1)).slice(-2)+'-'+now.getUTCFullYear());
}