fix: #11619, fix selector

isekai-main
Barış Soner Uşaklı 2 years ago
parent 4b40b44c67
commit cdeaef6b7c

@ -74,11 +74,11 @@ define('notifications', [
Notifications.handleUnreadButton = function (notifList) {
notifList.on('click', '.mark-read', function () {
const $this = $(this);
const liEl = $this.parents('li[data-nid]');
const unread = liEl.hasClass('unread');
const nid = liEl.attr('data-nid');
const notifEl = $this.parents('[data-nid]');
const unread = notifEl.hasClass('unread');
const nid = notifEl.attr('data-nid');
markNotification(nid, unread, function () {
liEl.toggleClass('unread');
notifEl.toggleClass('unread');
$this.find('.unread').toggleClass('hidden', unread);
$this.find('.read').toggleClass('hidden', !unread);
});

Loading…
Cancel
Save