mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-18 00:56:41 +10:00
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!
11 lines
646 B
Plaintext
11 lines
646 B
Plaintext
.note-edit-form
|
|
= form_for note, url: namespace_project_note_path(@project.namespace, @project, note), method: :put, remote: true, authenticity_token: true, class: 'js-quick-submit' do |f|
|
|
= note_target_fields(note)
|
|
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
|
|
= render 'projects/zen', f: f, attr: :note, classes: 'note_text js-note-text js-task-list-field'
|
|
= render 'projects/notes/hints'
|
|
|
|
.note-form-actions
|
|
= f.submit 'Save Comment', class: 'btn btn-nr btn-save btn-grouped js-comment-button'
|
|
= link_to 'Cancel', '#', class: 'btn btn-nr btn-cancel note-edit-cancel'
|