From 74f0953f60ad0daa8e05907e28266f4bf2ae2c58 Mon Sep 17 00:00:00 2001
From: Frederick Muriuki Muriithi
Date: Mon, 28 Apr 2025 09:30:54 -0500
Subject: Provide tooltip text.
---
uploader/templates/publications/index.html | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/uploader/templates/publications/index.html b/uploader/templates/publications/index.html
index f6f6fa0..9a30c59 100644
--- a/uploader/templates/publications/index.html
+++ b/uploader/templates/publications/index.html
@@ -38,7 +38,8 @@
data: (pub) => {
if(pub.PubMed_ID) {
return `` +
+ `${pub.PubMed_ID}/" target="_blank" ` +
+ `title="Link to publication on NCBI.">` +
`${pub.PubMed_ID}`;
}
return "";
@@ -51,7 +52,9 @@
title = pub.Title
}
return `${title}`;
+ `target="_blank" ` +
+ `title="Link to view publication details">` +
+ `${title}`;
}
},
{
--
cgit v1.2.3