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:
Diffstat (limited to 'app/views/projects/blob/_breadcrumb.html.haml')
-rw-r--r--app/views/projects/blob/_breadcrumb.html.haml13
1 files changed, 5 insertions, 8 deletions
diff --git a/app/views/projects/blob/_breadcrumb.html.haml b/app/views/projects/blob/_breadcrumb.html.haml
index 79b13dc861a..417c11ba37a 100644
--- a/app/views/projects/blob/_breadcrumb.html.haml
+++ b/app/views/projects/blob/_breadcrumb.html.haml
@@ -22,14 +22,11 @@
-# only show normal/blame view links for text files
- if blob.readable_text?
- if blame
- = link_to 'Normal view', project_blob_path(@project, @id),
- class: 'gl-button btn btn-default'
+ = link_button_to _('Normal view'), project_blob_path(@project, @id)
- else
- = link_to 'Blame', project_blame_path(@project, @id),
- class: 'gl-button btn btn-default js-blob-blame-link' unless blob.empty?
+ = link_button_to _('Blame'), project_blame_path(@project, @id), class: 'js-blob-blame-link' unless blob.empty?
- = link_to 'History', project_commits_path(@project, @id),
- class: 'gl-button btn btn-default'
+ = link_button_to _('History'), project_commits_path(@project, @id)
- = link_to 'Permalink', project_blob_path(@project,
- tree_join(@commit.sha, @path)), class: 'gl-button btn btn-default js-data-file-blob-permalink-url'
+ = link_button_to _('Permalink'), project_blob_path(@project, tree_join(@commit.sha, @path)),
+ class: 'js-data-file-blob-permalink-url'