Sha256: f08cbee8ec5a04d1c53185856a5a48e3cc4a8f04c22380b358362bbd25c2a3aa
Contents?: true
Size: 512 Bytes
Versions: 12
Compression:
Stored size: 512 Bytes
Contents
module SimpleForm module Inputs class NumericInput < Base enable :placeholder, :min_max def input(wrapper_options = nil) input_html_classes.unshift("numeric") if html5? 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
Version data entries
12 entries across 12 versions & 3 rubygems