From 891304b0f1a2830eff06e491ee63e3f919ec502e Mon Sep 17 00:00:00 2001 From: kongchinhua Date: Tue, 12 Jul 2011 21:25:13 +0000 Subject: [PATCH] Change scinode popup information text - 'pubs.' to 'publications (pubs.)' --- productMods/js/visualization/mapofscience/MarkerManager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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
' );