aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/number_field.rb
blob: e89fdbec46a69c54697769ef1c68d984d09e83d9 (plain) (tree)


















                                                                     
module ActionView
  module Helpers
    module Tags
      class NumberField < TextField #:nodoc:
        def render
          options = @options.stringify_keys
          options['size'] ||= nil

          if range = options.delete("in") || options.delete("within")
            options.update("min" => range.min, "max" => range.max)
          end

          @options = options
          super
        end
      end
    end
  end
end