aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/styles/prosilver/template/ajax.js')
-rw-r--r--phpBB/styles/prosilver/template/ajax.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js
index 5e66e5cda1..d85ba35873 100644
--- a/phpBB/styles/prosilver/template/ajax.js
+++ b/phpBB/styles/prosilver/template/ajax.js
@@ -100,7 +100,7 @@ phpbb.addAjaxCallback('mark_topics_read', function(res, updateTopicLinks) {
// This callback will mark all notifications read
phpbb.addAjaxCallback('notification.mark_all_read', function(res) {
if (typeof res.success !== 'undefined') {
- phpbb.markNotifications($('#notification_list li.bg2'), 0);
+ phpbb.markNotifications($('[data-notification-unread="true"]'), 0);
phpbb.closeDarkenWrapper(3000);
}
});
@@ -108,8 +108,8 @@ phpbb.addAjaxCallback('notification.mark_all_read', function(res) {
// This callback will mark a notification read
phpbb.addAjaxCallback('notification.mark_read', function(res) {
if (typeof res.success !== 'undefined') {
- var unreadCount = Number($('#notification_list_button strong').html()) - 1;
- phpbb.markNotifications($(this).parent('li.bg2'), unreadCount);
+ var unreadCount = Number($('#notification-button strong').html()) - 1;
+ phpbb.markNotifications($(this).parent('[data-notification-unread="true"]'), unreadCount);
}
});
@@ -131,11 +131,11 @@ phpbb.markNotifications = function($popup, unreadCount) {
});
// Update the unread count.
- $('strong', '#notification_list_button').html(unreadCount);
+ $('strong', '#notification-button').html(unreadCount);
// Remove the Mark all read link and hide notification count if there are no unread notifications.
if (!unreadCount) {
$('#mark_all_notifications').remove();
- $('#notification_list_button > strong').addClass('hidden');
+ $('#notification-button > strong').addClass('hidden');
}
// Update page title