# File lib/simple_form/inputs/range_input.rb, line 6
      def input
        if SimpleForm.html5
          input_html_options[:type] ||= "range"
          input_html_options[:step] ||= 1
        end

        super
      end