From b3c65bc8490b072a0d314aa3858c680fc6d67e35 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Fri, 18 Nov 2005 18:03:45 +0000 Subject: Use Element.update('id', 'html') instead of uid=501(sam) gid=501(sam) groups=501(sam), 81(appserveradm), 79(appserverusr), 80(admin).innerHTML = 'html' in JavaScriptGenerator#replace_html so that script tags are evaluated git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3086 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/prototype_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib/action_view') diff --git a/actionpack/lib/action_view/helpers/prototype_helper.rb b/actionpack/lib/action_view/helpers/prototype_helper.rb index 74c32c7441..1ba607a90f 100644 --- a/actionpack/lib/action_view/helpers/prototype_helper.rb +++ b/actionpack/lib/action_view/helpers/prototype_helper.rb @@ -425,7 +425,7 @@ module ActionView # def replace_html(id, *options_for_render) html = render(*options_for_render) - record "$(#{id.inspect}).innerHTML = #{html.inspect}" + record "Element.update(#{id.inspect}, #{html.inspect})" end # Removes the DOM elements with the given +ids+ from the page. -- cgit v1.2.3