hgweb: show full date in rfc822 format in tooltips at shortlog page
authorAlexander Plavin <alexander@plav.in>
Sun, 30 Jun 2013 11:48:21 +0400
changeset 19531 26943a6394d4
parent 19530 a63d3ff0d765
child 19532 b5e3f2b1d5e9
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.
mercurial/templates/static/mercurial.js
--- 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;
 				}
 			}