aboutsummaryrefslogtreecommitdiff
path: root/resources/assets/javascripts/bootstrap/fullscreen.js
blob: 1fa9b72b10519a498bd313d102e3ace3a43e432c (plain)
1
2
3
4
5
6
7
8
9
STUDIP.domReady(function () {
    $('.fullscreen-toggle').click(() => STUDIP.Fullscreen.toggle());

    if (sessionStorage.getItem('studip-fullscreen') == 'on' && $('.fullscreen-toggle').length > 0) {
        STUDIP.Fullscreen.enter(true);
    } else {
        $('.fullscreen-toggle').insertBefore('.helpbar-container');
    }
}, true);