Skip to content
Snippets Groups Projects
Select Git revision
  • a2fab39d46c4ac778c470ca8db1f7d286c81c566
  • main default protected
  • issue-56
  • testing-systems
4 results

TracToGitlabPlugin.php

Blame
  • 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);