heartcombo--simple_form/lib/simple_form/inputs/text_input.rb

14 lines
307 B
Ruby
Raw Normal View History

module SimpleForm
module Inputs
class TextInput < Base
enable :placeholder, :maxlength
2014-03-11 22:12:08 +00:00
def input(context = nil)
merged_input_options = merge_wrapper_options(input_html_options, context)
@builder.text_area(attribute_name, merged_input_options)
end
end
end
end