mirror of
https://github.com/github/rails.git
synced 2026-01-30 08:48:06 -05:00
Disambiguate :size option for text area tag. Closes #8955 [redbeard]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8099 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Disambiguate :size option for text area tag. Closes #8955 [redbeard]
|
||||
|
||||
* Fix broken tag in assert_tag documentation. Closes #9037 [mfazekas]
|
||||
|
||||
* Add documentation for route conditions. Closes #9041 [innu, manfred]
|
||||
|
||||
@@ -207,7 +207,7 @@ module ActionView
|
||||
# Creates a text input area; use a textarea for longer text inputs such as blog posts or descriptions.
|
||||
#
|
||||
# ==== Options
|
||||
# * <tt>:size</tt> - A string specifying the dimensions of the textarea using dimensions (e.g., "25x10").
|
||||
# * <tt>:size</tt> - A string specifying the dimensions (columns by rows) of the textarea (e.g., "25x10").
|
||||
# * <tt>:rows</tt> - Specify the number of rows in the textarea
|
||||
# * <tt>:cols</tt> - Specify the number of columns in the textarea
|
||||
# * <tt>:disabled</tt> - If set to true, the user will not be able to use this input.
|
||||
|
||||
Reference in New Issue
Block a user