diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-06 11:14:08 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-06 11:14:08 +0200 |
commit | 78c847ef7db90dc8dac7724e8671f1219e34befa (patch) | |
tree | 946e3de1d9f06a75037bbbeab85206ccf276f88c | |
parent | 673a2f67f16c00042aaf1394e42e88e2ad4dc20b (diff) | |
download | volse-hubzilla-78c847ef7db90dc8dac7724e8671f1219e34befa.tar.gz volse-hubzilla-78c847ef7db90dc8dac7724e8671f1219e34befa.tar.bz2 volse-hubzilla-78c847ef7db90dc8dac7724e8671f1219e34befa.zip |
improve notification handling on small screens
-rw-r--r-- | view/tpl/notifications_widget.tpl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 068441997..99a0191b2 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -5,10 +5,14 @@ $(document).ready(function() { notifications_parent = $('#notifications_wrapper')[0].parentElement.id; $('.notifications-btn').click(function() { - if($('#notifications_wrapper').hasClass('fs')) + if($('#notifications_wrapper').hasClass('fs')) { $('#notifications_wrapper').prependTo('#' + notifications_parent); - else + $('body').css('overflow', 'visible'); + } + else { $('#notifications_wrapper').prependTo('section'); + $('body').css('overflow', 'hidden'); + } $('#notifications_wrapper').toggleClass('fs'); if($('#navbar-collapse-2').hasClass('show')){ |