diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-20 22:39:29 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-20 22:39:29 +0100 |
commit | cbcd1954618da8ba7013a42fcec5bff531535ba9 (patch) | |
tree | 0caec944692a39b2ef6fa2b8a940e23ead2e6c3c /view/theme/redbasic/js | |
parent | 837efcf5e73b7fbc81697bcb1257ef8cf6912cdd (diff) | |
download | volse-hubzilla-cbcd1954618da8ba7013a42fcec5bff531535ba9.tar.gz volse-hubzilla-cbcd1954618da8ba7013a42fcec5bff531535ba9.tar.bz2 volse-hubzilla-cbcd1954618da8ba7013a42fcec5bff531535ba9.zip |
fix webpages widgets
Diffstat (limited to 'view/theme/redbasic/js')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 8106f913d..6aba457f1 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -74,12 +74,12 @@ $(document).ready(function() { function makeFullScreen(full) { if(typeof full=='undefined' || full == true) { $('main').addClass('fullscreen'); - $('header, nav, aside, #fullscreen-btn').css({'visibility': 'hidden'}); + $('header, nav, aside, #fullscreen-btn').hide(); $('#inline-btn').show(); } else { $('main').removeClass('fullscreen'); - $('header, nav, aside, #fullscreen-btn').css({'visibility': ''}); + $('header, nav, aside, #fullscreen-btn').show(); $('#inline-btn').hide(); $(document.body).trigger("sticky_kit:recalc"); } |