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

16 lines
302 B
Ruby

# frozen_string_literal: true
module SimpleForm
module Inputs
class RangeInput < NumericInput
def input(wrapper_options = nil)
if html5?
input_html_options[:type] ||= "range"
input_html_options[:step] ||= 1
end
super
end
end
end
end