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:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-11-09 23:26:24 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-11-09 23:26:24 +0400
commiteb96336de1f8fa44d8c74567ce35c9f8a7069d23 (patch)
tree18c4fe71b68192dc3f94406e604f34980e3d61c4 /app/helpers/tags_helper.rb
parente608eacc4bbbaf7c2b3bd81d3ef8a24da3df03be (diff)
1. Set Helvetica as primary font; 2. removed tabs
Diffstat (limited to 'app/helpers/tags_helper.rb')
-rw-r--r--app/helpers/tags_helper.rb21
1 files changed, 10 insertions, 11 deletions
diff --git a/app/helpers/tags_helper.rb b/app/helpers/tags_helper.rb
index 5c1ecc8689b..ebed6a83746 100644
--- a/app/helpers/tags_helper.rb
+++ b/app/helpers/tags_helper.rb
@@ -1,15 +1,14 @@
module TagsHelper
- def tag_path tag
- "/tags/#{tag}"
- end
+ def tag_path tag
+ "/tags/#{tag}"
+ end
- def tag_list project
- html = ''
- project.tag_list.each do |tag|
- html += link_to tag, tag_path(tag)
- end
-
- html.html_safe
- end
+ def tag_list project
+ html = ''
+ project.tag_list.each do |tag|
+ html += link_to tag, tag_path(tag)
+ end
+ html.html_safe
+ end
end