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:
Marcel Molina
2007-11-06 19:26:36 +00:00
parent 4a44dbb63d
commit 0230fc96ec
2 changed files with 3 additions and 1 deletions

View File

@@ -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]

View File

@@ -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.