Select Git revision
BlubberGlobalstream.vue
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);