14
15
16
17
18
19
20
|
# File 'lib/bootstrap_form_extensions/timespan.rb', line 14
def timespan method, units: @@units, quantity_options: {}, unit_options: {}
quantity, selected, units = quantity_and_units_for_timespan method, units
hidden = hidden_field method, class: 'timespan-seconds'
field = text_field_for_timespan method, quantity, quantity_options
select = select_for_timespan method, selected, units, unit_options
content_tag :span, hidden + field + ' '.html_safe + select, data: { timespan: true }
end
|