method

select_second

select_second()
public

No documentation available.

# File actionpack/lib/action_view/helpers/date_helper.rb, line 711
      def select_second
        if @options[:use_hidden] || @options[:discard_second]
          build_hidden(:second, sec) if @options[:include_seconds]
        else
          build_options_and_select(:second, sec)
        end
      end