Skip to content
Snippets Groups Projects
Select Git revision
  • 1e9f2810615f7b375e3133a9f8fbdbc767513978
  • main default protected
  • 5.5 protected
  • atlantis
  • 5.3 protected
  • 5.0 protected
  • issue-23
  • issue8-seat-logging-and-export
  • ticket-216
  • tickets-215-216-241-242
10 results

BasicDataWizardStep.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.
    jsupdater.js 291 B
    // Start js updater if global settings says so
    $(window).on('load', function() {
        if (STUDIP.jsupdate_enable) {
            STUDIP.JSUpdater.start();
        }
    });
    
    // Try to stop js updater if window is unloaded (might not work in all
    // browsers)
    $(window).on('unload', STUDIP.JSUpdater.stop);