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

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