aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/tags/password_field.rb
blob: 6e7a4d3c368aaae7ce2f34cfd2079a44b22d73b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module ActionView
  module Helpers
    module Tags
      class PasswordField < TextField #:nodoc:
        def render
          @options = {:value => nil}.merge!(@options)
          super
        end
      end
    end
  end
end