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-04-24 19:05:59 +0300
committerPhil Hughes <me@iamphill.com>2017-04-24 19:08:12 +0300
commit81a37ca1ee6d57e24633921fb6edee319f18887b (patch)
tree60538087ff0c9385b784a3a17d73fcab4a275610 /lib/gitlab/emoji.rb
parent4bde6eae51a43f37326f53363e6e4f21c5a3c295 (diff)
Moved the title onto the emoji tag
This adds the description in all places emojis are used
Diffstat (limited to 'lib/gitlab/emoji.rb')
-rw-r--r--lib/gitlab/emoji.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/emoji.rb b/lib/gitlab/emoji.rb
index a16d9fc2265..e3e36b35ce9 100644
--- a/lib/gitlab/emoji.rb
+++ b/lib/gitlab/emoji.rb
@@ -54,7 +54,7 @@ module Gitlab
unicode_version: emoji_unicode_version(emoji_name)
}
- ActionController::Base.helpers.content_tag('gl-emoji', emoji_info['moji'], data: data)
+ ActionController::Base.helpers.content_tag('gl-emoji', emoji_info['moji'], title: emoji_info['description'], data: data)
end
end
end