This commit is contained in:
cdtank 2010-07-22 22:09:32 +00:00
parent 53987ce8f3
commit d9793ffb9f
2 changed files with 4 additions and 2 deletions

View file

@ -212,6 +212,8 @@ function visLoaded(nodes){
}
function createTable(tableID, tableContainer, tableData) {
console.log(tableData);
var table = $('<table>');
table.attr('id', tableID);
@ -236,7 +238,7 @@ function createTable(tableID, tableContainer, tableData) {
var row = $('<tr>');
row.append($('<td>').html(item.name));
row.append($('<td>').html(item.label));
row.append($('<td>').html(item.number_of_authored_works));
table.append(row);