5 lines
166 B
Ruby
5 lines
166 B
Ruby
|
class DatePickerInput < SimpleForm::Inputs::StringInput
|
||
|
def input
|
||
|
@builder.text_field(attribute_name, input_html_options.merge({class: 'datepicker'}))
|
||
|
end
|
||
|
end
|