diff options
author | Matt Friedman <maf675@gmail.com> | 2016-11-06 10:00:50 -0800 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2016-11-06 10:00:50 -0800 |
commit | 0e114f91f46c626ee595a0aa2ee3bf41078e9f8d (patch) | |
tree | a8d0795aa2651055f6d532bbd0d36cdf8399c08f /phpBB/styles/prosilver | |
parent | af2bf4ef3662fbc7e84d36e9f638317d3d28123d (diff) | |
download | forums-0e114f91f46c626ee595a0aa2ee3bf41078e9f8d.tar forums-0e114f91f46c626ee595a0aa2ee3bf41078e9f8d.tar.gz forums-0e114f91f46c626ee595a0aa2ee3bf41078e9f8d.tar.bz2 forums-0e114f91f46c626ee595a0aa2ee3bf41078e9f8d.tar.xz forums-0e114f91f46c626ee595a0aa2ee3bf41078e9f8d.zip |
[ticket/14855] Remove notification bubble on mark all read
PHPBB3-14855
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js index e3780f024a..2e49b5de26 100644 --- a/phpBB/styles/prosilver/template/ajax.js +++ b/phpBB/styles/prosilver/template/ajax.js @@ -134,7 +134,7 @@ phpbb.markNotifications = function($popup, unreadCount) { $('strong', '#notification_list_button').html(unreadCount); // Remove the Mark all read link if there are no unread notifications. if (!unreadCount) { - $('#mark_all_notifications').remove(); + $('#mark_all_notifications, #notification_list_button > strong').remove(); } // Update page title |