diff options
-rw-r--r-- | view/js/main.js | 15 | ||||
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 15 |
2 files changed, 15 insertions, 15 deletions
diff --git a/view/js/main.js b/view/js/main.js index 4e99bf1aa..04b317914 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1451,18 +1451,3 @@ function zid(s) { return s; } - -function makeFullScreen(full) { - if(typeof full=='undefined' || full == true) { - $('#fullscreen-btn, header, nav, aside').hide(); - $('main').css({'width': '100%', 'max-width': 'none'}); - $('#inline-btn').show(); - $('.generic-content-wrapper').addClass('fullscreen'); - } - else { - $('#fullscreen-btn, header, nav, aside').show(); - $('main').removeAttr('style'); - $('#inline-btn').hide(); - $('.generic-content-wrapper').removeClass('fullscreen'); - } -} diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index a4e13b8eb..21b51af36 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -52,3 +52,18 @@ $(document).ready(function() { } setInterval(function () {checkNotify();}, 10 * 1000); }); + +function makeFullScreen(full) { + if(typeof full=='undefined' || full == true) { + $('#fullscreen-btn, header, nav, aside').hide(); + $('main').css({'width': '100%', 'max-width': 'none', 'left': '0px'}); + $('#inline-btn').show(); + $('.generic-content-wrapper').addClass('fullscreen'); + } + else { + $('#fullscreen-btn, header, nav, aside').show(); + $('main').removeAttr('style'); + $('#inline-btn').hide(); + $('.generic-content-wrapper').removeClass('fullscreen'); + } +} |