1. Fixed a bug where in person level vis for people who do not have any image attached to it, there was a silent error message being provided to the front-end, which caused for extra css files to be loaded.
This commit is contained in:
parent
8efaf54ee3
commit
bc89ddbb91
1 changed files with 13 additions and 9 deletions
|
@ -2,6 +2,10 @@
|
|||
|
||||
function getWellFormedURLs(given_uri, type) {
|
||||
|
||||
if (!given_uri || given_uri == "") {
|
||||
return;
|
||||
}
|
||||
|
||||
// general best practice is to put javascript code inside document.ready
|
||||
// but in this case when i do that the function does not get called
|
||||
// properly.
|
||||
|
@ -86,8 +90,9 @@ function setProfileImage(imageContainerID, mainImageURL, contextPath) {
|
|||
return;
|
||||
}
|
||||
|
||||
if (!mainImageURL) {
|
||||
if (!mainImageURL || mainImageURL == "") {
|
||||
$("#" + imageContainerID).empty();
|
||||
return;
|
||||
}
|
||||
|
||||
var rawPath = getWellFormedURLs(mainImageURL, "image");
|
||||
|
@ -173,6 +178,10 @@ function processProfileInformation(nameContainerID,
|
|||
|
||||
var name, mainImageURL, imageContextPath, moniker;
|
||||
|
||||
if (jQuery.isEmptyObject(profileInfoJSON)) {
|
||||
return;
|
||||
}
|
||||
|
||||
$.each(profileInfoJSON, function(key, set){
|
||||
|
||||
if (key.search(/mainImage/i) > -1) {
|
||||
|
@ -211,13 +220,8 @@ function visLoaded(nodes){
|
|||
|
||||
}
|
||||
|
||||
|
||||
function changeVisHeight(newHeight) {
|
||||
$("#CoAuthorVis").css("height", newHeight);
|
||||
$("#bodyPannel").css("height", newHeight);
|
||||
}
|
||||
|
||||
function createTable(tableID, tableContainer, tableData) {
|
||||
|
||||
var table = $('<table>');
|
||||
table.attr('id', tableID);
|
||||
|
||||
|
@ -329,7 +333,7 @@ function renderCoAuthorshipVisualization() {
|
|||
"width", "600",
|
||||
"height", "840",
|
||||
"align", "middle",
|
||||
"id", "CoAuthorVis",
|
||||
"id", "CoAuthor",
|
||||
"quality", "high",
|
||||
"bgcolor", "#ffffff",
|
||||
"name", "CoAuthor",
|
||||
|
@ -346,7 +350,7 @@ function renderCoAuthorshipVisualization() {
|
|||
"width", "600",
|
||||
"height", "850",
|
||||
"align", "top",
|
||||
"id", "CoAuthorVis",
|
||||
"id", "CoAuthor",
|
||||
"quality", "high",
|
||||
"bgcolor", "#ffffff",
|
||||
"name", "CoAuthor",
|
||||
|
|
Loading…
Add table
Reference in a new issue