Method: BMC::ButtonHelper#print_button

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


100
101
102
103
104
105
106
107
108
# File 'app/helpers/bmc/button_helper.rb', line 100

def print_button(**options)
  options = {
    :icon    => :print,
    :action  => :print,
    :onclick => "print(); return false;",
  }.merge(options)

  bs_button("#", **options)
end