Remove jQuery class from the reaction selector (#30138)

- Switched from jQuery class functions to plain JavaScript `classList`
- Tested the reaction selector and it works as before

Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Co-authored-by: Giteabot <teabot@gitea.io>
pull/30137/head^2
Yarden Shoham 10 months ago committed by GitHub
parent 34acd8e376
commit 1a71dbfb78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      web_src/js/features/comp/ReactionSelector.js

@ -5,7 +5,7 @@ export function initCompReactionSelector($parent) {
$parent.find(`.select-reaction .item.reaction, .comment-reaction-button`).on('click', async function (e) {
e.preventDefault();
if ($(this).hasClass('disabled')) return;
if (this.classList.contains('disabled')) return;
const actionUrl = this.closest('[data-action-url]')?.getAttribute('data-action-url');
const reactionContent = this.getAttribute('data-reaction-content');

Loading…
Cancel
Save