Skip to content
Snippets Groups Projects
Select Git revision
  • 8bea063bb504154fb47e064f51dc61c6f8a1b66f
  • main default protected
  • studip-rector
  • ci-opt
  • course-members-export-as-word
  • data-vue-app
  • pipeline-improvements
  • webpack-optimizations
  • rector
  • icon-renewal
  • http-client-and-factories
  • jsonapi-atomic-operations
  • vueify-messages
  • tic-2341
  • 135-translatable-study-areas
  • extensible-sorm-action-parameters
  • sorm-configuration-trait
  • jsonapi-mvv-routes
  • docblocks-for-magic-methods
19 results

my_courses.php

Blame
  • Forked from Stud.IP / Stud.IP
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    header_navigation.js 495 B
    // 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);