[#416] using a simpler approach to replace node with partial

This commit is contained in:
Gregor Schmidt 2011-05-17 19:30:06 +02:00
parent e3f54d470c
commit 4635a8c2a4
1 changed files with 1 additions and 7 deletions

View File

@ -86,10 +86,6 @@ private
replace_selectors = ['#watcher']
end
watcher_partial = lambda do
render_to_string(:partial => 'watchers/watchers', :locals => {:watched => @watched})
end
respond_to do |format|
format.html { redirect_to :back }
format.js do
@ -99,9 +95,7 @@ private
case selector
when '#watchers'
page.select('#watchers').each do |node|
node.update watcher_partial.call
end
page.replace_html 'watchers', :partial => 'watchers/watchers', :locals => {:watched => @watched}
else
page.select(selector).each do |node|
options = {:replace => replace_selectors}