lib/libdolt/view/blame.rb in libdolt-0.27.0 vs lib/libdolt/view/blame.rb in libdolt-0.28.0
- old
+ new
@@ -40,10 +40,10 @@
class_name = "gts-blame-annotation" + (annotation.nil? ? "" : " gts-annotated")
return "<td class=\"#{class_name}\"></td>" if annotation.nil?
<<-HTML
<td class="#{class_name}">
- <span class="gts-commit-oid" data-gts-commit-oid="#{annotation[:oid]}">#{annotation[:oid][0..6]}</span>
+ <span class="gts-commit-oid" data-gts-commit-oid="#{annotation[:oid]}" title="#{annotation[:summary]}">#{annotation[:oid][0..6]}</span>
#{annotation[:committer][:time].strftime("%Y-%m-%d")}
#{annotation[:committer][:name]}
</td>
HTML
end