diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-20 23:20:14 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-20 23:20:14 +0100 |
commit | a6f232f2b0613b8114424034da8814cffb566dd7 (patch) | |
tree | 1a7e7dc73fb49269d90696d925fe521366e237e2 /view/theme/redbasic/js | |
parent | cbcd1954618da8ba7013a42fcec5bff531535ba9 (diff) | |
download | volse-hubzilla-a6f232f2b0613b8114424034da8814cffb566dd7.tar.gz volse-hubzilla-a6f232f2b0613b8114424034da8814cffb566dd7.tar.bz2 volse-hubzilla-a6f232f2b0613b8114424034da8814cffb566dd7.zip |
really fix fullscreen and fix some issues in chat
Diffstat (limited to 'view/theme/redbasic/js')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 6aba457f1..995c7a504 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -74,7 +74,7 @@ $(document).ready(function() { function makeFullScreen(full) { if(typeof full=='undefined' || full == true) { $('main').addClass('fullscreen'); - $('header, nav, aside, #fullscreen-btn').hide(); + $('header, nav, aside, #fullscreen-btn').attr('style','display:none !important');; $('#inline-btn').show(); } else { |