Class: BootsyInput

Inherits:
SimpleForm::Inputs::Base
  • Object
show all
Defined in:
lib/bootsy/simple_form/bootsy_input.rb

Instance Method Summary collapse

Instance Method Details

#input(wrapper_options = nil) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/bootsy/simple_form/bootsy_input.rb', line 6

def input(wrapper_options = nil)
  bootsy_params = [:editor_options, :container, :uploader]
  input_html_options.merge!(input_options.select {|k,v| bootsy_params.include?(k) })

  # Check presence of `merge_wrapper_options` to keep
  # compatibility with both Simple Form 3.0 and 3.1.
  merged_input_options = if respond_to?(:merge_wrapper_options, true)
    merge_wrapper_options(input_html_options, wrapper_options)
  else
    input_html_options
  end

  @builder.bootsy_area(attribute_name, merged_input_options)
end