Fixed double flash when not followed by request Added Food#destroy error reporting Simplified prepare_meals with no ingredients Renamed scope on item with subitems: subitems -> with_subitems
6 lines
188 B
Plaintext
6 lines
188 B
Plaintext
<% if @food.destroyed? %>
|
|
$('tr[id=food-<%= @food.id %>]').nextUntil('tr.primary').addBack().remove();
|
|
<% else %>
|
|
$('#content').prepend('<%= j error_messages_for @food %>');
|
|
<% end %>
|