diff options
author | Drew Blessing <drew.blessing@buckle.com> | 2013-12-13 15:31:23 -0600 |
---|---|---|
committer | Drew Blessing <drew.blessing@buckle.com> | 2013-12-14 15:24:12 -0600 |
commit | fa817dffeae76fa101ee8849bbac645307c0c82f (patch) | |
tree | ef178d626e0c5ed372e9f5d55697bd02e8660f60 /app/views/projects/refs | |
parent | d476ac7d41f117ad9cf612e99216a4e7eaa04fb6 (diff) | |
download | gitlab-ce-fa817dffeae76fa101ee8849bbac645307c0c82f.tar.gz |
Add time ago tooltips to show actual date/time
Clean up admin dashboad tooltips
Clean up admin dashboad tooltips
Clean up admin dashboad tooltips
Add helper method
change to use app helper
Modify tooltips to use new helper
Convert remaining times
Adjust one tooltip
Diffstat (limited to 'app/views/projects/refs')
-rw-r--r-- | app/views/projects/refs/logs_tree.js.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/refs/logs_tree.js.haml b/app/views/projects/refs/logs_tree.js.haml index 213c54f5f75..2c8fc4dff29 100644 --- a/app/views/projects/refs/logs_tree.js.haml +++ b/app/views/projects/refs/logs_tree.js.haml @@ -5,5 +5,5 @@ :plain var row = $("table.table_#{@hex_path} tr.file_#{hexdigest(file_name)}"); - row.find("td.tree_time_ago").html('#{escape_javascript time_ago_in_words(commit.committed_date)} ago'); + row.find("td.tree_time_ago").html('#{escape_javascript time_ago_with_tooltip(commit.committed_date)} ago'); row.find("td.tree_commit").html('#{escape_javascript render("projects/tree/tree_commit_column", commit: commit)}'); |