aboutsummaryrefslogblamecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/password_field.rb
blob: 274c27df828a8fa15c2ee283a549219867ec68a9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12

                 

                                               
                  
                                                  





               
module ActionView
  module Helpers
    module Tags # :nodoc:
      class PasswordField < TextField # :nodoc:
        def render
          @options = {value: nil}.merge!(@options)
          super
        end
      end
    end
  end
end