From 4befec242aa3563f5a8a38bd390d834e4aa2797b Mon Sep 17 00:00:00 2001 From: Lauris BH Date: Mon, 17 Sep 2018 17:59:49 +0300 Subject: Code review UI improvements and bugfixes (#4682) * Code review UI improvements * More fixes to dark theme * Style fix * Fix to allow add code review comments only on review files tab * More readability dark style fixes * Fix commenting on deleted files. Fixes #4752 * Fix line blame getting for multiple corner cases --- public/js/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'public/js/index.js') diff --git a/public/js/index.js b/public/js/index.js index c90e129ce3..1544069921 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -780,7 +780,7 @@ function initPullRequestReview() { $("#show-outdated-" + id).removeClass('hide'); }); - $('.comment-form-reply').on('click', function (e) { + $('button.comment-form-reply').on('click', function (e) { e.preventDefault(); $(this).hide(); var form = $(this).parent().find('.comment-form') @@ -2649,7 +2649,7 @@ function cancelCodeComment(btn) { var form = $(btn).closest("form"); if(form.length > 0 && form.hasClass('comment-form')) { form.addClass('hide'); - form.parent().find('.comment-form-reply').show(); + form.parent().find('button.comment-form-reply').show(); }else { console.log("Hey"); form.closest('.comment-code-cloud').remove() -- cgit v1.2.3