Method: BMC::ButtonHelper#download_button

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

#download_button(url, **options) ⇒ Object



110
111
112
113
114
115
116
117
118
# File 'app/helpers/bmc/button_helper.rb', line 110

def download_button(url, **options)
  options = {
    :icon   => :cloud_download_alt,
    :action => :download,
    :target => :_blank,
  }.merge(options)

  bs_button(url, **options)
end