1. Made changes to wordings per Katy's request.

2. Fixed the separator issue for list of coauthors csv file.
3. Made style fix for person level vis.
This commit is contained in:
cdtank 2010-07-21 16:17:23 +00:00
parent 821da68e85
commit 7440b856f1
5 changed files with 6 additions and 9 deletions

View file

@ -251,13 +251,13 @@ function nodeClickedJS(json){
if (obj.url == egoURI) {
$("#authorName").addClass('author_name').removeClass('neutral_author_name');
$('#num_works > .author_stats_text').text('Work(s)');
$('#num_works > .author_stats_text').text('Publication(s)');
$('#num_authors > .author_stats_text').text('Co-author(s)');
} else {
$("#authorName").addClass('neutral_author_name').removeClass('author_name');
$('#num_works > .author_stats_text').text('Joint Work(s)');
$('#num_works > .author_stats_text').text('Joint Publication(s)');
$('#num_authors > .author_stats_text').text('Joint Co-author(s)');
}