Browse Source

Make a.add-code-comment click handler an event handler (#17737)

Instead of directly attaching the add-code-comment on click handler to
the a.add-code-comment elements - make this an event handler on the
document instead.

Fix #17736

Signed-off-by: Andrew Thornton <art27@cantab.net>
tags/v1.16.0-rc1
zeripath 2 years ago
parent
commit
0d69e64e03
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web_src/js/features/repo-issue.js

+ 1
- 1
web_src/js/features/repo-issue.js View File

@@ -480,7 +480,7 @@ export function initRepoPullRequestReview() {
$(this).closest('.menu').toggle('visible');
});

$('a.add-code-comment').on('click', async function (e) {
$(document).on('click', 'a.add-code-comment', async function (e) {
if ($(e.target).hasClass('btn-add-single')) return; // https://github.com/go-gitea/gitea/issues/4745
e.preventDefault();


Loading…
Cancel
Save