diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-10-08 17:19:29 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-10-08 17:19:29 +0200 |
commit | 991db280be4c3cbbff4fb1e4dae8f303a487ed3f (patch) | |
tree | 77b85421af0e0052f5b0ab23fc95abd51bc89728 /view/theme/redbasic/js | |
parent | 71c206fdb9d8ccdd0b65feb49db93a58ea51e0e6 (diff) | |
download | volse-hubzilla-991db280be4c3cbbff4fb1e4dae8f303a487ed3f.tar.gz volse-hubzilla-991db280be4c3cbbff4fb1e4dae8f303a487ed3f.tar.bz2 volse-hubzilla-991db280be4c3cbbff4fb1e4dae8f303a487ed3f.zip |
experimental new notifications - needs pconfig experimental_notif set to 1 for your channel to work.
Diffstat (limited to 'view/theme/redbasic/js')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index b36e35ccc..c67c67a51 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -64,6 +64,13 @@ $(document).ready(function() { } }); + $('#notifications-btn-1').click(function() { + $('#region_3').toggleClass('fs'); + if($('#navbar-collapse-2').hasClass('show')){ + $('#navbar-collapse-2').removeClass('show'); + } + }); + $("input[data-role=cat-tagsinput]").tagsinput({ tagClass: 'badge badge-pill badge-warning text-dark' }); |