From 95960767447b9ba7232ec1c85e08093bb4b9dd07 Mon Sep 17 00:00:00 2001 From: Nicholas Yianilos Date: Thu, 3 May 2012 09:41:29 -0400 Subject: refactored extracting :size => 'XxY' into an extract_size! method --- actionpack/lib/action_view/helpers/tags/text_area.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'actionpack/lib/action_view/helpers/tags/text_area.rb') diff --git a/actionpack/lib/action_view/helpers/tags/text_area.rb b/actionpack/lib/action_view/helpers/tags/text_area.rb index f74652c5e7..160f020263 100644 --- a/actionpack/lib/action_view/helpers/tags/text_area.rb +++ b/actionpack/lib/action_view/helpers/tags/text_area.rb @@ -6,9 +6,7 @@ module ActionView options = @options.stringify_keys add_default_name_and_id(options) - if size = options.delete("size") - options["cols"], options["rows"] = size.split("x") if size.respond_to?(:split) - end + extract_size!(options, 'cols', 'rows') content_tag("textarea", options.delete('value') || value_before_type_cast(object), options) end -- cgit v1.2.3