summaryrefslogtreecommitdiffstats
path: root/app/views/journals/new.js.erb
blob: 0f832f37f32a62425d60460f19744f4e9b5ef5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
showAndScrollTo("update");

var notes = $('#issue_notes').val();
if (notes > "") { notes = notes + "\n\n"}

$('#issue_notes').blur().focus().val(notes + "<%= raw escape_javascript(@content) %>");
<%
  # when quoting a private journal, check the private checkbox
  if @journal && @journal.private_notes? 
%>
$('#issue_private_notes').prop('checked', true);
<% end %>