20 lines
845 B
Plaintext
20 lines
845 B
Plaintext
- if note.valid?
|
|
:plain
|
|
// hide and reset the form
|
|
$(".per_line_form").hide();
|
|
$('.line-note-form-holder textarea').val("");
|
|
|
|
// find the reply button for this line
|
|
// (might not be there if this is the first note)
|
|
var trRpl = $("a.line_note_reply_link[data-line-code='#{note.line_code}']").closest("tr");
|
|
if (trRpl.size() == 0) {
|
|
// find the commented line ...
|
|
var trEl = $(".#{note.line_code}").parent();
|
|
// ... and insert the note and the reply button after it
|
|
trEl.after("#{escape_javascript(render "notes/reply_button", line_code: note.line_code)}");
|
|
trEl.after("#{escape_javascript(render "notes/per_line_show", note: note)}");
|
|
} else {
|
|
// instert new note before reply button
|
|
trRpl.before("#{escape_javascript(render "notes/per_line_show", note: note)}");
|
|
}
|