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:
cdtank 2010-07-09 20:16:42 +00:00
parent 8e05bf4de4
commit 8c77970189
4 changed files with 18 additions and 7 deletions

View file

@ -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);