##// END OF EJS Templates
gantt: code layout cleanup ruby code at head of show.html.erb...
gantt: code layout cleanup ruby code at head of show.html.erb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10322 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9885:6a2ca5e03427
r10139:47e375b271fa
Show More
update.js.erb
9 lines | 438 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
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'))) %>');
$("#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 }) %>