diff options
author | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2015-07-05 10:58:55 +0900 |
---|---|---|
committer | yuuji.yaginuma <yuuji.yaginuma@gmail.com> | 2015-07-05 10:58:55 +0900 |
commit | bba409e143b1e236e0fac6a0c1024a8648205b77 (patch) | |
tree | 4f3f157cf6596fa85046d46573e7a2ebf137347d /guides | |
parent | f09678b7b1442d70636a60edb6be138614cf789f (diff) | |
download | rails-bba409e143b1e236e0fac6a0c1024a8648205b77.tar.gz rails-bba409e143b1e236e0fac6a0c1024a8648205b77.tar.bz2 rails-bba409e143b1e236e0fac6a0c1024a8648205b77.zip |
remove reference to `country_options_for_select` and `country_select` from guide [ci skip]
these methods were removed in 2d27b82d4cf446543539ad20afcbad256d8aeff7
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_view_overview.md | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index 363f4dc303..98c6cbd540 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -1059,14 +1059,6 @@ If `@article.author_ids` is [1], this would return: <input name="article[author_ids][]" type="hidden" value="" /> ``` -#### country_options_for_select - -Returns a string of option tags for pretty much any country in the world. - -#### country_select - -Returns select and option tags for the given object and method, using country_options_for_select to generate the list of option tags. - #### option_groups_from_collection_for_select Returns a string of `option` tags, like `options_from_collection_for_select`, but groups them by `optgroup` tags based on the object relationships of the arguments. |