bug fix: add single comment in split diff mode (#4745) (#7052)

Signed-off-by: Rob Watson <rfwatson@users.noreply.github.com>
pull/6986/head^2
Rob Watson 2019-05-29 17:16:13 +02:00 committed by zeripath
parent 57b2ce03d5
commit d7494046ac
1 changed files with 4 additions and 0 deletions

View File

@ -1048,6 +1048,10 @@ function initPullRequestReview() {
$(this).closest('tr').removeClass('focus-lines-new focus-lines-old');
});
$('.add-code-comment').on('click', function(e) {
// https://github.com/go-gitea/gitea/issues/4745
if ($(e.target).hasClass('btn-add-single')) {
return;
}
e.preventDefault();
var isSplit = $(this).closest('.code-diff').hasClass('code-diff-split');
var side = $(this).data('side');