1
0
This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
body_tracking/app/views/meals/destroy.js.erb
2020-04-24 00:54:32 +02:00

5 lines
179 B
Plaintext

<% if @meal.destroyed? %>
$('tr[id=meal-<%= @meal.id %>]').nextUntil(':not(.ingredient)').addBack().remove();
$('#meals').find('tr.date + tr.date').prev().remove();
<% end %>