changeset 19531:26943a6394d4

hgweb: show full date in rfc822 format in tooltips at shortlog page The absolute date was not shown anywhere in the log view for users with enabled JavaScript.
author Alexander Plavin <alexander@plav.in>
date Sun, 30 Jun 2013 11:48:21 +0400
parents a63d3ff0d765
children b5e3f2b1d5e9
files mercurial/templates/static/mercurial.js
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/templates/static/mercurial.js	Sun Aug 04 16:19:12 2013 -0500
+++ b/mercurial/templates/static/mercurial.js	Sun Jun 30 11:48:21 2013 +0400
@@ -258,6 +258,7 @@
 					// We want both: date + (age)
 					node.textContent += ' ('+agevalue+')';
 				} else {
+					node.title = node.textContent;
 					node.textContent = agevalue;
 				}
 			}