aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorSam Stephenson <sam@37signals.com>2005-11-21 01:54:36 +0000
committerSam Stephenson <sam@37signals.com>2005-11-21 01:54:36 +0000
commitf212c88315a15922df408395ba3d4b85187019f5 (patch)
treea3de55c8741aad0d863e0d67644cf75d52355001 /actionpack
parenta0293c80f0ad06de4b80f50cd47868ff50aa7590 (diff)
downloadrails-f212c88315a15922df408395ba3d4b85187019f5.tar.gz
rails-f212c88315a15922df408395ba3d4b85187019f5.tar.bz2
rails-f212c88315a15922df408395ba3d4b85187019f5.zip
Pass multiple arguments to Element.show and Element.hide in JavaScriptGenerator instead of using iterators
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3116 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG2
-rw-r--r--actionpack/lib/action_view/helpers/prototype_helper.rb4
-rw-r--r--actionpack/test/template/prototype_helper_test.rb8
3 files changed, 8 insertions, 6 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 780ba1135f..3faf510337 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Pass multiple arguments to Element.show and Element.hide in JavaScriptGenerator instead of using iterators. [Sam Stephenson]
+
* Improve expire_fragment documentation. #2966 [court3nay@gmail.com]
* Correct docs for automatic layout assignment. #2610. [Charles M. Gerungan]
diff --git a/actionpack/lib/action_view/helpers/prototype_helper.rb b/actionpack/lib/action_view/helpers/prototype_helper.rb
index 1ba607a90f..94de4613ce 100644
--- a/actionpack/lib/action_view/helpers/prototype_helper.rb
+++ b/actionpack/lib/action_view/helpers/prototype_helper.rb
@@ -435,12 +435,12 @@ module ActionView
# Shows hidden DOM elements with the given +ids+.
def show(*ids)
- record "#{ids.inspect}.each(Element.show)"
+ record "Element.show(#{ids.map {|id| id.inspect} * ', '})"
end
# Hides the visible DOM elements with the given +ids+.
def hide(*ids)
- record "#{ids.inspect}.each(Element.hide)"
+ record "Element.hide(#{ids.map {|id| id.inspect} * ', '})"
end
private
diff --git a/actionpack/test/template/prototype_helper_test.rb b/actionpack/test/template/prototype_helper_test.rb
index c15280dcb3..32292a7e18 100644
--- a/actionpack/test/template/prototype_helper_test.rb
+++ b/actionpack/test/template/prototype_helper_test.rb
@@ -179,16 +179,16 @@ class JavaScriptGeneratorTest < Test::Unit::TestCase
end
def test_show
- assert_equal '["foo"].each(Element.show);',
+ assert_equal 'Element.show("foo");',
@generator.show('foo')
- assert_equal '["foo", "bar", "baz"].each(Element.show);',
+ assert_equal 'Element.show("foo", "bar", "baz");',
@generator.show('foo', 'bar', 'baz')
end
def test_hide
- assert_equal '["foo"].each(Element.hide);',
+ assert_equal 'Element.hide("foo");',
@generator.hide('foo')
- assert_equal '["foo", "bar", "baz"].each(Element.hide);',
+ assert_equal 'Element.hide("foo", "bar", "baz");',
@generator.hide('foo', 'bar', 'baz')
end