Update dev_status.htm

This commit is contained in:
JSZMonkey 2021-11-29 10:56:42 +08:00 committed by GitHub
parent 828e903a52
commit e37a18d395
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -341,7 +341,11 @@ table.imagetable td {
tr.insertCell(-1).innerHTML = total_time_str;
tr.insertCell(-1).innerHTML = action_status;
$('tr').find('td').attr('class', 'td');
var childs = tr.childNodes;
Array.prototype.forEach.call(childs,function(child){
child.className = 'td';
});
}
}