blob: 9fbcd0e361f26f9fa588dad5b6774d35215eba54 (
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('unload', STUDIP.JSUpdater.stop);
|