module Bh::Form::SelectHelper

Public Instance Methods

select(method, choices = nil, options = {}, html_options = {}, &block) click to toggle source
Calls superclass method
# File lib/bh/core_ext/rails/form/select_helper.rb, line 8
def select(method, choices = nil, options = {}, html_options = {}, &block)
  append_class! html_options, 'form-control'
  base_field method, :select, options do
    super method, choices, options, html_options, &block
  end
end