blob: 8434413c88570c4bd2afd48ea93323f05216b37b (
plain)
1
2
3
4
5
6
7
8
9
10
|
// 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('beforeunload', STUDIP.JSUpdater.stop);
|