##// END OF EJS Templates
Don't add the inclusion error when tracker is not set, the blank error is enough....
Don't add the inclusion error when tracker is not set, the blank error is enough. git-svn-id: http://svn.redmine.org/redmine/trunk@15492 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10762:b99a6f11f3b3
r15110:90d14b71b365
Show More
edit.js.erb
8 lines | 314 B | text/plain | TextLexer
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 $("#journal-<%= @journal.id %>-notes").hide();
Jean-Philippe Lang
Fixed: clicking journal edit multiple times shows multiple forms (#12568)....
r10762
if ($("form#journal-<%= @journal.id %>-form").length > 0) {
// journal edit form already loaded
$("#journal-<%= @journal.id %>-form").show();
} else {
$("#journal-<%= @journal.id %>-notes").after('<%= escape_javascript(render :partial => 'notes_form') %>');
}