From bde8be41fb3141e33dc86e24fa3fe6200cbb9e87 Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Sun, 2 Sep 2007 23:51:27 +0000 Subject: Properly quote the arguments to visual_effect. Closes #7220 [jeremymcanally] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7396 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/scriptaculous_helper.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'actionpack/lib/action_view/helpers') diff --git a/actionpack/lib/action_view/helpers/scriptaculous_helper.rb b/actionpack/lib/action_view/helpers/scriptaculous_helper.rb index f79a3c50e3..033000b004 100644 --- a/actionpack/lib/action_view/helpers/scriptaculous_helper.rb +++ b/actionpack/lib/action_view/helpers/scriptaculous_helper.rb @@ -50,6 +50,10 @@ module ActionView "'#{js_options[:queue]}'" end if js_options[:queue] + [:endcolor, :direction, :startcolor, :scaleMode, :restorecolor].each do |option| + js_options[option] = "'#{js_options[option]}'" if js_options[option] + end + if TOGGLE_EFFECTS.include? name.to_sym "Effect.toggle(#{element},'#{name.to_s.gsub(/^toggle_/,'')}',#{options_for_javascript(js_options)});" else -- cgit v1.2.3