Differentiate between dirs, files and general code.

This commit is contained in:
Marin Jankovski 2014-07-08 16:12:06 +02:00
parent de22913501
commit 5d25f3d9b1
1 changed files with 5 additions and 2 deletions

View File

@ -7,10 +7,13 @@
- if commit.description?
%a.text-expander.js-toggle-button ...
- if @repo.blob_at(commit.id, @path)
- if @repo && @repo.blob_at(commit.id, @path)
= link_to "Browse File »", project_blob_path(project, tree_join(commit.id, @path)), class: "pull-right"
- else
- elsif @path.blank?
= link_to "Browse Code »", project_tree_path(project, commit), class: "pull-right"
- else
= link_to "Browse Dir »", project_tree_path(project, tree_join(commit.id, @path)), class: "pull-right"
.notes_count
- if @note_counts
- note_count = @note_counts.fetch(commit.id, 0)