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 15:13:34 +0300
committerPhil Hughes <me@iamphill.com>2017-08-18 13:07:05 +0300
commita10cc2202dffcf8b4a7bc7db22757ac83bf95eb4 (patch)
tree23df31ffcbc60fba465286c1dffa7dff23e03933 /app/helpers/breadcrumbs_helper.rb
parent85b272b22365a7e4588d4897ad9ce78ea180f124 (diff)
added collapsible sub-groups & wiki pages
[ci skip]
Diffstat (limited to 'app/helpers/breadcrumbs_helper.rb')
-rw-r--r--app/helpers/breadcrumbs_helper.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/helpers/breadcrumbs_helper.rb b/app/helpers/breadcrumbs_helper.rb
index 044cc905eb4..d4c3e1b3929 100644
--- a/app/helpers/breadcrumbs_helper.rb
+++ b/app/helpers/breadcrumbs_helper.rb
@@ -30,4 +30,10 @@ module BreadcrumbsHelper
output
end
end
+
+ def add_to_breadcrumb_dropdown(link, location: :before)
+ @breadcrumb_dropdown_links ||= {}
+ @breadcrumb_dropdown_links[location] = [] unless @breadcrumb_dropdown_links[location]
+ @breadcrumb_dropdown_links[location] << link
+ end
end