diff options
author | Mario <mario@mariovavti.com> | 2019-12-20 09:53:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-12-20 09:53:05 +0000 |
commit | c42e8613e59ba74a5683a9d2678933fedbd43db2 (patch) | |
tree | 611eb9ce886fee6372939f58cb278d47c14a6ef6 /view/tpl | |
parent | 3d019fa2dd6bddb9c93f64d8c91de96e40ced46e (diff) | |
download | volse-hubzilla-c42e8613e59ba74a5683a9d2678933fedbd43db2.tar.gz volse-hubzilla-c42e8613e59ba74a5683a9d2678933fedbd43db2.tar.bz2 volse-hubzilla-c42e8613e59ba74a5683a9d2678933fedbd43db2.zip |
sse: fix new posts only filter broken after aditional results loaded
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/notifications_widget.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 8e22da6c5..146c510f1 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -82,7 +82,7 @@ {{if $notification.filter}} $(document).on('click', '#tt-{{$notification.type}}-only', function(e) { e.preventDefault(); - $('#nav-{{$notification.type}}-menu [data-thread_top=false]').toggle(); + $('#nav-{{$notification.type}}-menu [data-thread_top=false]').toggleClass('d-none'); $(this).toggleClass('active sticky-top'); }); $(document).on('click', '#cn-{{$notification.type}}-input-clear', function(e) { |