diff options
author | Mario <mario@mariovavti.com> | 2020-11-04 15:16:52 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-04 15:16:52 +0000 |
commit | 20d2811cd5d0e2f518169a7625c8df3734f7137c (patch) | |
tree | 9e6fe1ac4fbc73b6833fccfb5384f6688afa8594 /view/js/main.js | |
parent | b4ca5c133cdc0f4934eb6d348dcc423a5ff4fe02 (diff) | |
parent | 207df132e69bd3e70f28addbd63bd3c638da9b08 (diff) | |
download | volse-hubzilla-20d2811cd5d0e2f518169a7625c8df3734f7137c.tar.gz volse-hubzilla-20d2811cd5d0e2f518169a7625c8df3734f7137c.tar.bz2 volse-hubzilla-20d2811cd5d0e2f518169a7625c8df3734f7137c.zip |
Merge branch 'dev' into 5.0RC
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index fb7bcb52f..8ceb0b143 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1868,7 +1868,9 @@ function sse_handleNotifications(obj, replace, followup) { } else { $('.' + type + '-update').html('0'); - $('.' + type + '-button').fadeOut(); + $('.' + type + '-button').fadeOut(function() { + sse_setNotificationsStatus(); + }); } if(obj[type].notifications.length) sse_handleNotificationsItems(type, obj[type].notifications, replace, followup); |