7754189187
Didn't bother with files in db/, config/, or features/
17 lines
487 B
Plaintext
17 lines
487 B
Plaintext
= render "commits/commit_box"
|
|
= render "commits/diffs", diffs: @commit.diffs
|
|
= render "notes/notes", tid: @commit.id, tt: "commit"
|
|
= render "notes/per_line_form"
|
|
|
|
|
|
:javascript
|
|
$(document).ready(function(){
|
|
$(".line_note_link, .line_note_reply_link").live("click", function(e) {
|
|
var form = $(".per_line_form");
|
|
$(this).parent().parent().after(form);
|
|
form.find("#note_line_code").val($(this).attr("line_code"));
|
|
form.show();
|
|
return false;
|
|
});
|
|
});
|