aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/notifications_widget.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-09-09 19:44:27 +0200
committerMario Vavti <mario@mariovavti.com>2018-09-09 19:44:27 +0200
commit677ad71b96640a76b6e857d9e3e509d70ad7a9ce (patch)
tree473f355c3e447ce96aba886aa15fc45ca3aa6f88 /view/tpl/notifications_widget.tpl
parent9607bb29fd354245f915fcf8c2d109035dc52ede (diff)
downloadvolse-hubzilla-677ad71b96640a76b6e857d9e3e509d70ad7a9ce.tar.gz
volse-hubzilla-677ad71b96640a76b6e857d9e3e509d70ad7a9ce.tar.bz2
volse-hubzilla-677ad71b96640a76b6e857d9e3e509d70ad7a9ce.zip
fix some issues with latest notification improvements
Diffstat (limited to 'view/tpl/notifications_widget.tpl')
-rw-r--r--view/tpl/notifications_widget.tpl7
1 files changed, 5 insertions, 2 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl
index b37ef40da..9b3d7487e 100644
--- a/view/tpl/notifications_widget.tpl
+++ b/view/tpl/notifications_widget.tpl
@@ -7,11 +7,14 @@
$('.notifications-btn').click(function() {
if($('#notifications_wrapper').hasClass('fs')) {
$('#notifications_wrapper').prependTo('#' + notifications_parent);
- $('body').css('overflow', 'auto');
+ //undo scrollbar remove
+ $('section').css('height', '');
}
else {
$('#notifications_wrapper').prependTo('section');
- $('body').css('overflow', 'hidden');
+ //remove superfluous scrollbar
+ //setting overflow to hidden here has issues with some browsers
+ $('section').css('height', '100vh');
}
$('#notifications_wrapper').toggleClass('fs');