7 lines
211 B
Plaintext
7 lines
211 B
Plaintext
$('#new-food').empty();
|
|
<% if params[:view] == 'index' %>
|
|
$('#foods').html('<%= j render partial: 'foods/index' %>');
|
|
<% else %>
|
|
$('#nutrients').html('<%= j render partial: 'foods/nutrients' %>');
|
|
<% end %>
|