diff options
author | default <nobody@localhost> | 2022-11-15 10:37:15 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-11-15 10:37:15 +0100 |
commit | 36ff9721737f24615e0c5eaefb70046e567412eb (patch) | |
tree | 6dad8b85286a8078210ee27c10e6b419e61b9282 | |
parent | d5685645f2c34efac65ca02e0611dbc9bca8855a (diff) |
Show the complete date as a 'title' popup.
-rw-r--r-- | html.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -108,7 +108,8 @@ d_char *html_actor_icon(snac *snac, d_char *os, char *actor, char *date, char *u else { xs *sd = xs_crop(xs_dup(date), 0, 10); xs *s1 = xs_fmt( - "<br>\n<time class=\"dt-published snac-pubdate\">%s</time>\n", sd); + "<br>\n<time class=\"dt-published snac-pubdate\" title=\"%s\">%s</time>\n", + date, sd); s = xs_str_cat(s, s1); } |