2011-10-08 23:36:38 +02:00
|
|
|
- if @issue.valid?
|
|
|
|
:plain
|
2011-11-25 22:40:12 +01:00
|
|
|
switchFromNewIssue();
|
2012-08-11 00:07:50 +02:00
|
|
|
$("#issues-table").prepend("#{escape_javascript(render(partial: 'show', locals: {issue: @issue}))}");
|
2011-10-08 23:36:38 +02:00
|
|
|
$.ajax({type: "GET", url: location.href, dataType: "script"});
|
|
|
|
- else
|
|
|
|
:plain
|
|
|
|
$("#new_issue_dialog").empty();
|
|
|
|
$("#new_issue_dialog").append("#{escape_javascript(render('form'))}");
|
2011-11-25 22:40:12 +01:00
|
|
|
$('select#issue_assignee_id').chosen();
|