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

clipboard_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c1d7569fac3df89c38b464502382bd4763e521b (plain)
1
2
3
4
5
6
7
8
module ClipboardHelper
  def clipboard_button
    content_tag :button,
      icon('clipboard'),
      class: 'btn btn-xs btn-clipboard js-clipboard-trigger',
      type: :button
  end
end