diff options
author | Lauris BH <lauris@nix.lv> | 2018-09-17 17:59:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 17:59:49 +0300 |
commit | 4befec242aa3563f5a8a38bd390d834e4aa2797b (patch) | |
tree | f372612f3911ceb304bc6868b051a4c972025013 /public/js | |
parent | 756eafaaf68b3cadb3f33f37554a6aa2d83921ef (diff) | |
download | gitea-4befec242aa3563f5a8a38bd390d834e4aa2797b.tar.gz gitea-4befec242aa3563f5a8a38bd390d834e4aa2797b.zip |
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
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
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() |