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.

new.js.erb 367B

12345678910111213
  1. showAndScrollTo("update");
  2. var notes = $('#issue_notes').val();
  3. if (notes > "") { notes = notes + "\n\n"}
  4. $('#issue_notes').blur().focus().val(notes + "<%= raw escape_javascript(@content) %>");
  5. <%
  6. # when quoting a private journal, check the private checkbox
  7. if @journal && @journal.private_notes?
  8. %>
  9. $('#issue_private_notes').prop('checked', true);
  10. <% end %>