mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-25 09:51:14 +00:00
git-svn-id: http://svn.redmine.org/redmine/trunk@17389 e93f8b46-1217-0410-a6f0-8f06a7374b81
8 lines
465 B
Plaintext
8 lines
465 B
Plaintext
replaceIssueFormWith('<%= escape_javascript(render :partial => 'form') %>');
|
|
<% case params[:form_update_triggered_by] %>
|
|
<% when "issue_project_id" %>
|
|
$("#watchers_form_container").html('<%= escape_javascript(render :partial => 'issues/watchers_form') %>');
|
|
<% when "issue_category_id" %>
|
|
$('#issue_assigned_to_id').find('option').first().html('<%= escape_javascript(@issue.category.try(:assigned_to).try(:name)).presence || ' '.html_safe %>');
|
|
<% end %>
|