Make contest table use padding for SRX and STX

pull/2170/head
phl0 2023-05-27 14:52:55 +02:00
rodzic 679a8e676c
commit 6787c62caa
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 48EA1E640798CA9A
1 zmienionych plików z 20 dodań i 1 usunięć

Wyświetl plik

@ -528,7 +528,21 @@ function restoreContestSession(data) {
"scrollCollapse": true,
"paging": false,
"scrollX": true,
order: [0, 'desc']
order: [0, 'desc'],
"columnDefs": [
{
"render": function ( data, type, row ) {
return pad(row[8],3);
},
"targets" : 8
},
{
"render": function ( data, type, row ) {
return pad(row[9],3);
},
"targets" : 9
}
]
});
}
}
@ -538,3 +552,8 @@ function restoreContestSession(data) {
$("#exch_serial_s").val("1");
}
}
function pad (str, max) {
str = str.toString();
return str.length < max ? pad("0" + str, max) : str;
}