fa817dffea
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
9 lines
449 B
Text
9 lines
449 B
Text
- @logs.each do |content_data|
|
|
- file_name = content_data[:file_name]
|
|
- commit = content_data[:commit]
|
|
- next unless commit
|
|
|
|
:plain
|
|
var row = $("table.table_#{@hex_path} tr.file_#{hexdigest(file_name)}");
|
|
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)}');
|