0178b5a2fe
Adds 2 new permissions for viewing/adding private comments to issues. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10547 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
349 B
Plaintext
11 lines
349 B
Plaintext
$('#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;
|