diff options
author | Mario <mario@mariovavti.com> | 2023-10-05 09:29:53 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-10-05 09:29:53 +0000 |
commit | 600e8081a82f088ff513664379a1557ae5078193 (patch) | |
tree | 074e170b3af47f9ca347c66bdc1dc6830a864a8a | |
parent | 59fd7c3c9a3bccc2ef7ffc1337b0546db4f02a4b (diff) | |
download | volse-hubzilla-600e8081a82f088ff513664379a1557ae5078193.tar.gz volse-hubzilla-600e8081a82f088ff513664379a1557ae5078193.tar.bz2 volse-hubzilla-600e8081a82f088ff513664379a1557ae5078193.zip |
fix regression
-rw-r--r-- | view/tpl/notifications_widget.tpl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 15b29490b..9ea5ffec6 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -31,9 +31,8 @@ }); $(document).on('click', '.notification', function() { - $('#notifications_wrapper').addClass('d-none'); if($('#notifications_wrapper').hasClass('fs')) { - $('#notifications_wrapper').prependTo('#' + notifications_parent).removeClass('fs'); + $('#notifications_wrapper').prependTo('#' + notifications_parent).removeClass('fs').addClass('d-none'); } }); |