Add a title attr to show full date on history log
This commit is contained in:
@@ -33,7 +33,7 @@
|
|||||||
{{>author_template}}
|
{{>author_template}}
|
||||||
</td>
|
</td>
|
||||||
<td class="commit-name">
|
<td class="commit-name">
|
||||||
<span class="time-elapsed">{{date}}:</span>
|
<span class="time-elapsed" title="{{date_full}}">{{date}}:</span>
|
||||||
{{message}}
|
{{message}}
|
||||||
[<a href="{{base_url}}/{{escaped_url_path}}/{{id}}" title="View commit">{{id7}}</a>]
|
[<a href="{{base_url}}/{{escaped_url_path}}/{{id}}" title="View commit">{{id7}}</a>]
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ module Precious
|
|||||||
:date => v.authored_date.strftime("%B %d, %Y"),
|
:date => v.authored_date.strftime("%B %d, %Y"),
|
||||||
:gravatar => Digest::MD5.hexdigest(v.author.email),
|
:gravatar => Digest::MD5.hexdigest(v.author.email),
|
||||||
:identicon => self._identicon_code(v.author.email),
|
:identicon => self._identicon_code(v.author.email),
|
||||||
|
:date_full=> v.authored_date,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user