diff --git a/productMods/js/visualization/mapofscience/MarkerManager.js b/productMods/js/visualization/mapofscience/MarkerManager.js
index 11face70..fbcd7f49 100644
--- a/productMods/js/visualization/mapofscience/MarkerManager.js
+++ b/productMods/js/visualization/mapofscience/MarkerManager.js
@@ -177,7 +177,7 @@ var DisciplineMarkerManager = ScimapMarkerManager.extend({
marker.setContent(
'
'
+ poly.label +'
'
- + addCommasToNumber(poly.value.toFixed(2)) + ' of pubs.
'
+ + addCommasToNumber(poly.value.toFixed(2)) + ' of publications (pubs.)
'
+ (poly.value * 100 / this.maxValue).toFixed(2) + '% of activity
'
);
return marker;
@@ -198,7 +198,7 @@ var SubdisciplineMarkerManager = ScimapMarkerManager.extend({
marker.setContent(
''
+ poly.label + ' in ' + disciplineLabel +'
'
- + addCommasToNumber(poly.value.toFixed(2)) + ' of pubs.
'
+ + addCommasToNumber(poly.value.toFixed(2)) + ' of publications (pubs.)
'
+ (poly.value * 100 / this.maxValue).toFixed(2) + '% of activity
'
);