NIHVIVO-3080: put js variables into double quotes so the script won't choke on names containing an apostrophe
This commit is contained in:
parent
0912b8cf41
commit
266d3d007d
2 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ var subOrganizationPublicationTemporalGraphCommonURL = "${subOrganizationPublica
|
|||
|
||||
var jsonString = '${jsonContent!}';
|
||||
var vivoDefaultNamespace = '${vivoDefaultNamespace!}';
|
||||
var organizationLabel = '${organizationLabel}';
|
||||
var organizationLabel = "${organizationLabel}";
|
||||
var organizationVIVOProfileURL = "${organizationVivoProfileURL}";
|
||||
|
||||
var loadingImageLink = contextPath + "/images/visualization/ajax-loader-indicator.gif";
|
||||
|
|
|
@ -45,7 +45,7 @@ var mapOfScienceImageFolderPrefix = imageFolderPrefix
|
|||
+ "mapofscience/";
|
||||
var disciplineLabelImageUrlPrefix = mapOfScienceImageFolderPrefix + "labels/";
|
||||
|
||||
var entityLabel = '${entityLabel}';
|
||||
var entityLabel = "${entityLabel}";
|
||||
|
||||
var ENTITY_TYPE = '${entityType}';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue