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