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:
authorSullivan SENECHAL <soullivaneuh@gmail.com>2014-10-02 02:21:29 +0400
committerSullivan SENECHAL <soullivaneuh@gmail.com>2014-10-03 14:19:24 +0400
commit5d8be4438add1183d91e030b852c628cf09f4916 (patch)
treefc06a25a526de719d3bc9c7ba5d4ebb4fe69a828 /app/helpers/tree_helper.rb
parent0cc30145f441a16ce513bba942ea67ede4086a7f (diff)
Upgrade to Font Awesome v4.2
Diffstat (limited to 'app/helpers/tree_helper.rb')
-rw-r--r--app/helpers/tree_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/tree_helper.rb b/app/helpers/tree_helper.rb
index ed3c401d873..c3b537eac47 100644
--- a/app/helpers/tree_helper.rb
+++ b/app/helpers/tree_helper.rb
@@ -36,9 +36,9 @@ module TreeHelper
# type - String type of the tree item; either 'folder' or 'file'
def tree_icon(type)
icon_class = if type == 'folder'
- 'icon-folder-close'
+ 'fa fa-folder'
else
- 'icon-file-alt'
+ 'fa fa-file-o'
end
content_tag :i, nil, class: icon_class