kaps_app/app/inputs/qi_time_picker_input.rb
Nicolas Bally d60301e8a7 initial
2019-01-21 01:15:10 +01:00

13 lines
308 B
Ruby

class QiTimePickerInput < Formtastic::Inputs::TextInput
include FormtasticBootstrap::Inputs::Base
def to_html
r = rand(1000000000000000000000000000)
bootstrap_wrapping do
builder.text_field(method.to_s, input_html_options.merge!(:class => "timepicker form-control"))
end
end
end