blob: 9b80619d926363040efe84f9a37717e6d80545e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Hide sink on touch elsewhere
$(document).on('touchstart', function (event) {
if ($(event.target).closest('li.overflow').length === 0) {
$('#header-sink').prop('checked', false);
}
if ($(event.target).closest('li.has-subnavigation').length === 0) {
$('.responsive-toggle').prop('checked', false);
}
});
// Reshrink on resize
$(window).on('resize', _.debounce(STUDIP.NavigationShrinker, 100));
// Shrink on domready
STUDIP.domReady(STUDIP.NavigationShrinker);
|