I have a link_to_function on one page to go to this edit screen with
this link_to_function.
<%= link_to_function ‘cancel’ do |page|
page[:“work_show_#{work.id}”].hide
end %>
When I click on the edit button it says,
missing ) after argument list
http://localhost:3000/
Line 2
If i take out
page[:“work_show_#{work.id}”].hide
it works fine. Any ideas why it it saying there is an issue?