Module: RailsTheme::Bootstrap::FormHelper

Defined in:
app/helpers/rails_theme/bootstrap/form_helper.rb

Instance Method Summary collapse

Instance Method Details

#submit_button(f, label = nil, options = {}) ⇒ Object



4
5
6
7
8
9
10
# File 'app/helpers/rails_theme/bootstrap/form_helper.rb', line 4

def submit_button f, label = nil, options = {}
  options = {
    name: nil,
    class: 'btn-primary'
  }.deep_merge options
  f.button :submit, label, options
end