1. Made changes to make sparklines be less ditant from the surrounding text.
2. Made style changes. 3. Enabled displaying of flash vis when there is atleast 1 publication, previously we looked for at least 1 co-authorship. 4. Made style changes to the tables displaying stats.
This commit is contained in:
parent
8e05bf4de4
commit
8c77970189
4 changed files with 18 additions and 7 deletions
|
@ -182,8 +182,11 @@ function createTable(tableID, tableContainer, tableData) {
|
|||
|
||||
var row = $('<tr>');
|
||||
|
||||
row.append($('<th>').html("Author"));
|
||||
row.append($('<th>').html("Count"));
|
||||
var authorTH = $('<th>');
|
||||
authorTH.html("Author");
|
||||
row.append(authorTH);
|
||||
|
||||
row.append($('<th>').html("Publications with <br />" + $('#ego_label').text()));
|
||||
|
||||
header.append(row);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue