summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2022-11-15 10:37:15 +0100
committerGravatar default2022-11-15 10:37:15 +0100
commit36ff9721737f24615e0c5eaefb70046e567412eb (patch)
tree6dad8b85286a8078210ee27c10e6b419e61b9282
parentUpdated RELEASE_NOTES. (diff)
downloadsnac2-36ff9721737f24615e0c5eaefb70046e567412eb.tar.gz
snac2-36ff9721737f24615e0c5eaefb70046e567412eb.tar.xz
snac2-36ff9721737f24615e0c5eaefb70046e567412eb.zip
Show the complete date as a 'title' popup.
-rw-r--r--html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/html.c b/html.c
index bf10b6b..7b87fc8 100644
--- a/html.c
+++ b/html.c
@@ -108,7 +108,8 @@ d_char *html_actor_icon(snac *snac, d_char *os, char *actor, char *date, char *u
108 else { 108 else {
109 xs *sd = xs_crop(xs_dup(date), 0, 10); 109 xs *sd = xs_crop(xs_dup(date), 0, 10);
110 xs *s1 = xs_fmt( 110 xs *s1 = xs_fmt(
111 "<br>\n<time class=\"dt-published snac-pubdate\">%s</time>\n", sd); 111 "<br>\n<time class=\"dt-published snac-pubdate\" title=\"%s\">%s</time>\n",
112 date, sd);
112 113
113 s = xs_str_cat(s, s1); 114 s = xs_str_cat(s, s1);
114 } 115 }