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:
authorPhil Hughes <me@iamphill.com>2017-08-16 12:35:59 +0300
committerPhil Hughes <me@iamphill.com>2017-08-18 13:07:05 +0300
commit85b272b22365a7e4588d4897ad9ce78ea180f124 (patch)
tree89e40128c2a38ce85b85621b7da6fa688e0565c7 /app/helpers/breadcrumbs_helper.rb
parent52252e70e8222e573901632a03d408f3f8698f63 (diff)
updated a bunch of breadcrumb titles
[ci skip]
Diffstat (limited to 'app/helpers/breadcrumbs_helper.rb')
-rw-r--r--app/helpers/breadcrumbs_helper.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/helpers/breadcrumbs_helper.rb b/app/helpers/breadcrumbs_helper.rb
index abe8edd6a8c..044cc905eb4 100644
--- a/app/helpers/breadcrumbs_helper.rb
+++ b/app/helpers/breadcrumbs_helper.rb
@@ -22,4 +22,12 @@ module BreadcrumbsHelper
@breadcrumb_title = title
end
+
+ def breadcrumb_list_item(link)
+ content_tag "li" do
+ output = link
+ output << icon("angle-right", class: "breadcrumbs-list-angle")
+ output
+ end
+ end
end