76ed2afcfc
Now it will work on any field inside that form, and it's easier to scope new behavior, which is what we're adding next!
8 lines
391 B
Text
8 lines
391 B
Text
= form_for [@project.namespace.becomes(Namespace), @project, @issue], html: { class: 'form-horizontal issue-form gfm-form js-quick-submit js-requires-input' } do |f|
|
|
= render 'shared/issuable/form', f: f, issuable: @issue
|
|
|
|
:javascript
|
|
$('.assign-to-me-link').on('click', function(e){
|
|
$('#issue_assignee_id').val("#{current_user.id}").trigger("change");
|
|
e.preventDefault();
|
|
});
|