Method: BMC::ButtonHelper#copy_button

Defined in:
app/helpers/bmc/button_helper.rb

#copy_button(url, **options) ⇒ Object



147
148
149
150
151
152
153
154
# File 'app/helpers/bmc/button_helper.rb', line 147

def copy_button(url, **options)
  options = {
    :icon   => :copy,
    :action => :copy,
  }.merge(options)

  bs_button(url, **options)
end