Files
sx-fc/app/inputs/time_picker_input.rb
2017-10-23 11:38:10 +06:30

16 lines
258 B
Ruby
Executable File

class TimePickerInput < DatePickerInput
private
def display_pattern
I18n.t('timepicker.dformat', default: '%R')
end
def picker_pattern
I18n.t('timepicker.pformat', default: 'HH:mm')
end
def date_options
date_options_base
end
end