diff options
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/prototype_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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. |