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/edit_notes.js.erb
2020-04-19 21:34:24 +02:00

5 lines
170 B
Plaintext

var box = $('td[id=notes-<%= @meal.id %>]');
box.contents().hide();
box.append('<%= j render partial: 'meals/edit_notes_form' %>');
box.find('input[type=text]').focus();