Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « emojis « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49bd9acd2db156f207e4d239a47fdc5b53521f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
.emoji-menu
  = text_field_tag :emoji_search, "", class: "emoji-search search-input form-control", placeholder: "Search emoji"
  .emoji-menu-content
    - Gitlab::AwardEmoji.emoji_by_category.each do |category, emojis|
      %h5.emoji-menu-title
        = Gitlab::AwardEmoji::CATEGORIES[category]
      %ul.clearfix.emoji-menu-list
        - emojis.each do |emoji|
          %li.pull-left.text-center.emoji-menu-list-item
            %button.emoji-menu-btn.text-center.js-emoji-btn{ type: "button" }
              = emoji_icon(emoji["name"], emoji["unicode"], emoji["aliases"])