aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/tags/time_field.rb
blob: 0e90a3aed78b93972d7f051590d3b1723d1bd765 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module ActionView
  module Helpers
    module Tags # :nodoc:
      class TimeField < DatetimeField # :nodoc:
        private

          def format_date(value)
            value.try(:strftime, "%T.%L")
          end
      end
    end
  end
end