gitlab-org--gitlab-foss/app/views/projects/issues/_form.html.haml

9 lines
399 B
Plaintext
Raw Normal View History

2016-04-05 09:34:02 +00:00
= form_for [@project.namespace.becomes(Namespace), @project, @issue], html: { class: 'form-horizontal issue-form common-note-form js-quick-submit js-requires-input' } do |f|
2015-12-02 13:38:14 +00:00
= render 'shared/issuable/form', f: f, issuable: @issue
2012-12-18 03:14:05 +00:00
:javascript
2013-05-29 10:16:30 +00:00
$('.assign-to-me-link').on('click', function(e){
$('#issue_assignee_id').val("#{current_user.id}").trigger("change");
2013-05-29 10:16:30 +00:00
e.preventDefault();
});