blob: a7e8cf88be4a03db7c6ea8271009d02ffd0f2780 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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 %>
|