Redmine 3.4.4
This commit is contained in:
commit
64924a6376
2112 changed files with 259028 additions and 0 deletions
13
app/views/journals/new.js.erb
Normal file
13
app/views/journals/new.js.erb
Normal file
|
@ -0,0 +1,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 %>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue