Merge pull request #2170 from phl0/padContestTable

Make contest table use padding for SRX and STX
pull/2171/head
Peter Goodhall 2023-05-27 14:21:39 +01:00 zatwierdzone przez GitHub
commit e0f3b17335
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
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;
}