aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorThomas Fuchs <thomas@fesch.at>2005-10-29 15:01:39 +0000
committerThomas Fuchs <thomas@fesch.at>2005-10-29 15:01:39 +0000
commit56ae4ab54783dd337bd909866b1461b306ceb175 (patch)
tree9c5bd62a555ec287e464d7273d5744557ad18884 /actionpack/lib/action_view
parentd8f0a3f93ca80fa64435dde8100d0eae6110207c (diff)
downloadrails-56ae4ab54783dd337bd909866b1461b306ceb175.tar.gz
rails-56ae4ab54783dd337bd909866b1461b306ceb175.tar.bz2
rails-56ae4ab54783dd337bd909866b1461b306ceb175.zip
Added support for the queue option on visual_effect
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2807 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/helpers/javascript_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_view/helpers/javascript_helper.rb b/actionpack/lib/action_view/helpers/javascript_helper.rb
index 5637d7f5ce..e7109e92e8 100644
--- a/actionpack/lib/action_view/helpers/javascript_helper.rb
+++ b/actionpack/lib/action_view/helpers/javascript_helper.rb
@@ -377,6 +377,7 @@ module ActionView
# http://script.aculo.us for more documentation.
def visual_effect(name, element_id = false, js_options = {})
element = element_id ? "'#{element_id}'" : "element"
+ js_options[:queue] = "'#{js_options[:queue]}'" if js_options[:queue]
"new Effect.#{name.to_s.camelize}(#{element},#{options_for_javascript(js_options)});"
end