@@ -275,6 +275,9 @@ require([
275275
276276 const manifest_tooltip = {
277277 dynamicTip : function ( ref ) {
278+ if ( $ ( ref ) . hasClass ( 'idc-index' ) ) {
279+ return `View instructions for downloading this ${ $ ( ref ) . attr ( "data-download-type-display" ) } using the idc-index tool.` ;
280+ }
278281 let table_type = $ ( ref ) . parents ( 'table' ) . attr ( 'data-table-type' ) ;
279282 if ( table_type === 'series' ) {
280283 return 'Download a manifest file for this series to use with a download tool.'
@@ -304,7 +307,7 @@ require([
304307 return disabled_messages [ $ ( ref ) . attr ( 'data-disabled-type' ) ] ;
305308 }
306309 let download_type = $ ( ref ) . attr ( 'data-download-type' ) ;
307- return `Download all of the files in this ${ download_type } .` ;
310+ return `Download all of the files in this ${ download_type . replace ( "_" , " " ) } .` ;
308311 } ,
309312 content : 'Download all files.' , // placeholder text
310313 theme : 'dark' ,
@@ -354,7 +357,7 @@ require([
354357 tippy . delegate ( '.cases-table' , copy_tip ) ;
355358
356359 tippy . delegate ( '#body' , {
357- content : 'Get the citation list for this cohort .' ,
360+ content : 'View citation(s) in Vancouver Elsevier format .' ,
358361 theme : 'dark' ,
359362 placement : 'left' ,
360363 arrow : false ,
@@ -403,6 +406,7 @@ require([
403406
404407 tippy . delegate ( '#body' , disabled_download_tooltip ) ;
405408 tippy . delegate ( '#body' , download_tooltip ) ;
409+ tippy . delegate ( "#collection_details" , manifest_tooltip ) ;
406410
407411 tippy . delegate ( '#body' , {
408412 content : function ( reference ) {
0 commit comments