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

21 lines
542 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module SimpleForm
module Inputs
class NumericInput < Base
2011-12-04 15:31:13 +00:00
enable :placeholder, :min_max
def input(wrapper_options = nil)
2011-12-04 14:56:05 +00:00
input_html_classes.unshift("numeric")
2011-12-04 15:15:27 +00:00
if html5?
2011-09-03 13:08:51 +00:00
input_html_options[:type] ||= "number"
input_html_options[:step] ||= integer? ? 1 : "any"
end
merged_input_options = merge_wrapper_options(input_html_options, wrapper_options)
@builder.text_field(attribute_name, merged_input_options)
end
end
end
end