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

15 lines
264 B
Ruby
Raw Normal View History

module SimpleForm
module Inputs
class RangeInput < NumericInput
2014-03-11 22:12:08 +00:00
def input(context = nil)
2011-12-04 15:15:27 +00:00
if html5?
input_html_options[:type] ||= "range"
input_html_options[:step] ||= 1
end
super
end
end
end
end