You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

edit.js.erb 314B

12345678
  1. $("#journal-<%= @journal.id %>-notes").hide();
  2. if ($("form#journal-<%= @journal.id %>-form").length > 0) {
  3. // journal edit form already loaded
  4. $("#journal-<%= @journal.id %>-form").show();
  5. } else {
  6. $("#journal-<%= @journal.id %>-notes").after('<%= escape_javascript(render :partial => 'notes_form') %>');
  7. }