git ssb

16+

Dominic / patchbay



Commit 70e41235e3a95b27386e99fd841687b2b5588964

Fix git initial date rendering

Fix %R6NzsmqzhwLpwIzi66CjCYhVuG552h1o33g8tQkubcU=.sha256
Charles Lehner committed on 8/3/2016, 10:29:52 PM
Parent: 77ca943d1889e9ed48ffceb25d8de3f1b5998515

Files changed

modules/git.jschanged
modules/git.jsView
@@ -49,13 +49,14 @@
4949 }
5050
5151 //todo:
5252 function messageTimestampLink(msg) {
53+ var date = new Date(msg.value.timestamp)
5354 return h('a.timestamp', {
5455 timestamp: msg.value.timestamp,
55- title: new Date(msg.value.timestamp),
56+ title: date,
5657 href: '#'+msg.key
57- }, human(msg.value.timestamp))
58+ }, human(date)
5859 }
5960
6061 // a thead+tbody where the thead only is added when the first row is added
6162 function tableRows(headerRow) {

Built with git-ssb-web