Commit c56d32c73e22b705ca6623c98b7a264440873726

Authored by Dmitriy Zaporozhets
2 parents 36ea3216 eb585297

Merge pull request #3038 from dmedvinsky/commit-time

Add commit full time tooltip to `commited_ago`
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/commits/_commit.html.haml
... ... @@ -8,7 +8,7 @@
8 8  
9 9 = link_to_gfm truncate(commit.title, length: 70), project_commit_path(@project, commit.id), class: "row_title"
10 10  
11   - %span.committed_ago
  11 + %time.committed_ago{ datetime: commit.committed_date, title: commit.committed_date.stamp("Aug 21, 2011 9:23pm") }
12 12 = time_ago_in_words(commit.committed_date)
13 13 ago
14 14  
... ...