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

logs_tree.js.haml « refs « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b517327139508c159cb94fed9b0131874ecb36b (plain)
1
2
3
4
5
6
7
8
- @logs.each do |content_data|
  - file_name = content_data[:file_name]
  - commit = content_data[:commit]

  :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_commit").html('#{escape_javascript render("tree/tree_commit_column", commit: commit)}');