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

12 lines
235 B
Ruby
Raw Normal View History

module SimpleForm
module Inputs
class TextInput < Base
enable :placeholder, :maxlength
def input(context)
@builder.text_area(attribute_name, merged_input_options(context.options))
end
end
end
end