From 12b39524779e36b2e52e0b64c1d85186355e9415 Mon Sep 17 00:00:00 2001 From: Connor Shea Date: Fri, 17 Jun 2016 11:27:18 -0600 Subject: Fix clibpoard buttons on "Check out branch" modal. Also document the clipboard_button_with_class method. Fixes #18794. --- app/helpers/button_helper.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'app/helpers/button_helper.rb') diff --git a/app/helpers/button_helper.rb b/app/helpers/button_helper.rb index 07a3f452460..a7ec3730066 100644 --- a/app/helpers/button_helper.rb +++ b/app/helpers/button_helper.rb @@ -22,6 +22,16 @@ module ButtonHelper type: :button end + # Output a "Copy to Clipboard" button with a custom CSS class + # + # data - Data attributes passed to `content_tag` + # css_class - Class passed to the `content_tag` + # + # Examples: + # + # # Define the target element + # clipboard_button_with_class({clipboard_target: "div#foo"}, css_class: "btn-clipboard") + # # => "" def clipboard_button_with_class(data = {}, css_class: 'btn-clipboard') content_tag :button, icon('clipboard'), -- cgit v1.2.1