diff options
author | Xavier Noria <fxn@hashref.com> | 2010-10-19 23:07:29 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-10-19 23:07:29 +0200 |
commit | d619b9d1d1ad8d7497bf24283b2318c056283f48 (patch) | |
tree | d0a937b8630d4244eb91f45398dfe2be69ba6c45 /actionpack | |
parent | 95d87823d4c9837e7a491fb4469869c5b2de5e05 (diff) | |
parent | e43de58ab449218ab2d56e30e54e429aadcb8a1b (diff) | |
download | rails-d619b9d1d1ad8d7497bf24283b2318c056283f48.tar.gz rails-d619b9d1d1ad8d7497bf24283b2318c056283f48.tar.bz2 rails-d619b9d1d1ad8d7497bf24283b2318c056283f48.zip |
Merge branch 'master' of git://github.com/lifo/docrails
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/date_helper.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/actionpack/lib/action_view/helpers/date_helper.rb b/actionpack/lib/action_view/helpers/date_helper.rb index 3aee4fb773..c1214bc44e 100644 --- a/actionpack/lib/action_view/helpers/date_helper.rb +++ b/actionpack/lib/action_view/helpers/date_helper.rb @@ -215,21 +215,10 @@ module ActionView # # Creates a time select tag that, when POSTed, will be stored in the post variable in the sunrise attribute # time_select("post", "sunrise") # - # # Creates a time select tag that, when POSTed, will be stored in the order variable in the submitted - # # attribute - # time_select("order", "submitted") - # - # # Creates a time select tag that, when POSTed, will be stored in the mail variable in the sent_at attribute - # time_select("mail", "sent_at") - # # # Creates a time select tag with a seconds field that, when POSTed, will be stored in the post variables in # # the sunrise attribute. # time_select("post", "start_time", :include_seconds => true) # - # # Creates a time select tag with a seconds field that, when POSTed, will be stored in the entry variables in - # # the submission_time attribute. - # time_select("entry", "submission_time", :include_seconds => true) - # # # You can set the :minute_step to 15 which will give you: 00, 15, 30 and 45. # time_select 'game', 'game_time', {:minute_step => 15} # |