summaryrefslogtreecommitdiffstats
path: root/app/views/journals/new.js.erb
blob: 78ec5f360a2280d7b7509b334d323d1f6ba74a63 (plain)
1
2
3
4
5
6
7
8
9
10
$('#issue_notes').val("<%= raw escape_javascript(@content) %>");
<%
  # when quoting a private journal, check the private checkbox
  if @journal && @journal.private_notes? 
%>
$('#issue_private_notes').attr('checked', true);
<% end %>

showAndScrollTo("update", "notes");
$('#notes').scrollTop = $('#notes').scrollHeight - $('#notes').clientHeight;