Flowdock
method

render

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: NumberField
render() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/helpers/tags/number_field.rb, line 5
        def render
          options = @options.stringify_keys

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

          @options = options
          super
        end
Register or log in to add new notes.