aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/hidden_field.rb
blob: ea86596e0b0a76aaeca8eb2681c3098f31784968 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActionView
  module Helpers
    module Tags
      class HiddenField < TextField #:nodoc:
        def render
          @options.update(:size => nil)
          super
        end
      end
    end
  end
end