Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew Blessing <drew.blessing@buckle.com>2013-12-14 01:31:23 +0400
committerDrew Blessing <drew.blessing@buckle.com>2013-12-15 01:24:12 +0400
commitfa817dffeae76fa101ee8849bbac645307c0c82f (patch)
treeef178d626e0c5ed372e9f5d55697bd02e8660f60 /app/views/projects/refs
parentd476ac7d41f117ad9cf612e99216a4e7eaa04fb6 (diff)
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.haml2
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)}');