(tr, item)
| 50 | } |
| 51 | |
| 52 | function appendCells(tr, item) { |
| 53 | return tr.append($('<td />').text(item.Id)) + |
| 54 | tr.append($('<td />').text(item.SubmitAt)) + |
| 55 | tr.append($('<td />').text(item.Message)) + |
| 56 | tr.append($('<td />').text(item.ProcessedAt)) + |
| 57 | tr.append($('<td />').text(item.Status)); |
| 58 | } |
no test coverage detected