##// END OF EJS Templates
Option for long text custom fields to be displayed under the description field (#21705)....
Option for long text custom fields to be displayed under the description field (#21705). Based on patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@16251 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15241:82158fb72432
r15869:b40d66f39fa8
Show More
update.js.erb
11 lines | 650 B | text/plain | TextLexer
Jean-Philippe Lang
Removes RJS from JournalsController....
r9871 <% if @journal.frozen? %>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $("#change-<%= @journal.id %>").remove();
Jean-Philippe Lang
Removes RJS from JournalsController....
r9871 <% else %>
Jean-Philippe Lang
Enable updating private_notes property on journal edit form (#22575)....
r15238 $("#change-<%= @journal.id %>").attr('class', '<%= @journal.css_classes %>');
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $("#journal-<%= @journal.id %>-notes").replaceWith('<%= escape_javascript(render_notes(@journal.issue, @journal, :reply_links => authorize_for('issues', 'edit'))) %>');
Jean-Philippe Lang
Renames #render_private_notes to #render_private_notes_indicator (#22575)....
r15241 $("#journal-<%= @journal.id %>-private_notes").replaceWith('<%= escape_javascript(render_private_notes_indicator(@journal)) %>');
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $("#journal-<%= @journal.id %>-notes").show();
$("#journal-<%= @journal.id %>-form").remove();
Jean-Philippe Lang
Removes RJS from JournalsController....
r9871 <% end %>
<%= call_hook(:view_journals_update_js_bottom, { :journal => @journal }) %>