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 <dmitriy.zaporozhets@gmail.com>2016-03-03 18:38:15 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-03-03 18:38:15 +0300
commit1e717988d71e3c2a62f7410628812d8439cf6684 (patch)
tree374af35804da154d21b9097c26c5bd9b20e8d3ed /app/views/explore
parent1a0a687f2139ac321aa2acc767f93475bdf10931 (diff)
Use helper for font-awesome icons
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/explore')
-rw-r--r--app/views/explore/projects/_filter.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/explore/projects/_filter.html.haml b/app/views/explore/projects/_filter.html.haml
index 476ff584c9f..39e3e8e2738 100644
--- a/app/views/explore/projects/_filter.html.haml
+++ b/app/views/explore/projects/_filter.html.haml
@@ -1,7 +1,7 @@
- if current_user
.dropdown
%a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
- %i.fa.fa-globe
+ = icon('globe')
%span.light Visibility:
- if params[:visibility_level].present?
= visibility_level_label(params[:visibility_level].to_i)
@@ -21,7 +21,7 @@
- if @tags.present?
.dropdown
%a.dropdown-toggle.btn{href: '#', "data-toggle" => "dropdown"}
- %i.fa.fa-tags
+ = icon('tags')
%span.light Tags:
- if params[:tag].present?
= params[:tag]