diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-01-03 16:42:30 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-01-03 16:42:30 -0200 |
commit | f89266ace88b489a6af48fa4ae749a0e159112b6 (patch) | |
tree | b24939b60fe2092127e1562e2cec0b67bf3505f0 | |
parent | 0cd7b7ba3bb151ad0c3fce9006c80f7d541681f9 (diff) | |
download | rails-f89266ace88b489a6af48fa4ae749a0e159112b6.tar.gz rails-f89266ace88b489a6af48fa4ae749a0e159112b6.tar.bz2 rails-f89266ace88b489a6af48fa4ae749a0e159112b6.zip |
No need to use fixed size font [ci skip]
-rw-r--r-- | actionview/lib/action_view/helpers/date_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionview/lib/action_view/helpers/date_helper.rb b/actionview/lib/action_view/helpers/date_helper.rb index 19035771a6..7b838e260c 100644 --- a/actionview/lib/action_view/helpers/date_helper.rb +++ b/actionview/lib/action_view/helpers/date_helper.rb @@ -172,10 +172,10 @@ module ActionView # * <tt>:date_separator</tt> - Specifies a string to separate the date fields. Default is "" (i.e. nothing). # * <tt>:start_year</tt> - Set the start year for the year select. Default is <tt>Date.today.year - 5</tt>if # you are creating new record. While editing existing record, <tt>:start_year</tt> defaults to - # <tt>current selected year minus 5</tt>. + # the current selected year minus 5. # * <tt>:end_year</tt> - Set the end year for the year select. Default is <tt>Date.today.year + 5</tt> if # you are creating new record. While editing existing record, <tt>:end_year</tt> defaults to - # <tt>current selected year plus 5</tt>. + # the current selected year plus 5. # * <tt>:discard_day</tt> - Set to true if you don't want to show a day select. This includes the day # as a hidden field instead of showing a select field. Also note that this implicitly sets the day to be the # first of the given month in order to not create invalid dates like 31 February. |