OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/issue_relations/create.js.erb

9 lines
385 B

jQuery('#relations #errorExplanation').remove();
<% if @relation.errors.empty? %>
jQuery('#relations tbody').append("<%= escape_javascript(render :partial => 'issues/relation', :locals => { :relation => @relation }) %>");
jQuery('#relation_issue_to_id').val('');
<% else %>
jQuery('#relations table').after("<%= escape_javascript(error_messages_for(@relation)) %>");
<% end %>