1. Fixed the bug (see NIHVIVO-1794) where wrong language was getting displayed in the sidebar for person level visualizations.

This commit is contained in:
cdtank 2011-01-26 22:01:59 +00:00
parent afec9c1b82
commit 81f089389d
4 changed files with 4 additions and 2 deletions

View file

@ -40,7 +40,7 @@ function renderStatsOnNodeClicked(json){
*/
if(obj.url){
if (obj.url == egoURI) {
if (obj.url === unEncodedEgoURI) {
$("#investigatorName").addClass('investigator_name').removeClass('neutral_investigator_name');
$('#num_works > .investigator_stats_text').text(works);

View file

@ -38,7 +38,7 @@ function renderStatsOnNodeClicked(json){
*/
if(obj.url){
if (obj.url == egoURI) {
if (obj.url === unEncodedEgoURI) {
$("#authorName").addClass('author_name').removeClass('neutral_author_name');
$('#num_works > .author_stats_text').text(works);

View file

@ -40,6 +40,7 @@ var requiredRevision = 0;
var swfLink = "${swfLink}";
var egoURI = "${egoURI}";
var unEncodedEgoURI = "${egoURIParam}";
var egoCoAuthorshipDataFeederURL = "${egoCoAuthorshipDataFeederURL}";
var egoCoAuthorsListDataFileURL = "${egoCoAuthorsListDataFileURL}";
var contextPath = "${urls.base}";

View file

@ -38,6 +38,7 @@ var requiredRevision = 0;
var swfLink = "${swfLink}";
var egoURI = "${egoURI}";
var unEncodedEgoURI = "${egoURIParam}";
var egoCoInvestigationDataFeederURL = "${egoCoInvestigationDataFeederURL}";
var egoCoInvestigatorsListDataFileURL = "${egoCoInvestigatorsListDataFileURL}";