summaryrefslogtreecommitdiff
path: root/app/helpers/notifications_helper.rb
diff options
context:
space:
mode:
authorSullivan SENECHAL <soullivaneuh@gmail.com>2014-10-02 00:21:29 +0200
committerSullivan SENECHAL <soullivaneuh@gmail.com>2014-10-03 12:19:24 +0200
commit5d8be4438add1183d91e030b852c628cf09f4916 (patch)
treefc06a25a526de719d3bc9c7ba5d4ebb4fe69a828 /app/helpers/notifications_helper.rb
parent0cc30145f441a16ce513bba942ea67ede4086a7f (diff)
downloadgitlab-ce-5d8be4438add1183d91e030b852c628cf09f4916.tar.gz
Upgrade to Font Awesome v4.2
Diffstat (limited to 'app/helpers/notifications_helper.rb')
-rw-r--r--app/helpers/notifications_helper.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/helpers/notifications_helper.rb b/app/helpers/notifications_helper.rb
index 6c43f97446b..bad380e98a8 100644
--- a/app/helpers/notifications_helper.rb
+++ b/app/helpers/notifications_helper.rb
@@ -1,13 +1,13 @@
module NotificationsHelper
def notification_icon(notification)
if notification.disabled?
- content_tag :i, nil, class: 'icon-volume-off ns-mute'
+ content_tag :i, nil, class: 'fa fa-volume-off ns-mute'
elsif notification.participating?
- content_tag :i, nil, class: 'icon-volume-down ns-part'
+ content_tag :i, nil, class: 'fa fa-volume-down ns-part'
elsif notification.watch?
- content_tag :i, nil, class: 'icon-volume-up ns-watch'
+ content_tag :i, nil, class: 'fa fa-volume-up ns-watch'
else
- content_tag :i, nil, class: 'icon-circle-blank ns-default'
+ content_tag :i, nil, class: 'fa fa-circle-o ns-default'
end
end
end