blob: bdecb5d6d3547741b5f49238e578aad4662b60d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/*jslint esversion: 6*/
STUDIP.loadScript = function (script_name) {
return new Promise(function (resolve, reject) {
let script = document.createElement('script');
script.src = `${STUDIP.ASSETS_URL}${script_name}`;
script.onload = resolve;
script.onerror = reject;
document.head.appendChild(script);
});
};
STUDIP.loadChunk = (function () {
var mathjax_promise = null;
return function (chunk) {
var promise = null;
switch (chunk) {
case 'code-highlight':
promise = import(
/* webpackChunkName: "code-highlight" */
'./chunks/code-highlight'
).then(({default: hljs}) => {
return hljs;
});
break;
case 'chartist':
promise = import(
/* webpackChunkName: "chartist" */
'./chunks/chartist'
).then(({ default: Chartist }) => Chartist);
break;
case 'fullcalendar':
promise = import(
/* webpackChunkName: "fullcalendar" */
'./chunks/fullcalendar'
);
break;
case 'tablesorter':
promise = import(
/* webpackChunkName: "tablesorter" */
'./chunks/tablesorter'
);
break;
case 'mathjax':
if (mathjax_promise === null) {
mathjax_promise = STUDIP.loadScript(
'javascripts/mathjax/MathJax.js?config=TeX-AMS_HTML,default'
).then(() => {
(function (origPrint) {
window.print = function () {
MathJax.Hub.Queue(
['Delay', MathJax.Callback, 700],
origPrint
);
};
})(window.print);
mathjax_loaded = true;
return MathJax;
}).catch(() => {
mathjax_loaded = false;
});
}
promise = mathjax_promise;
break;
case 'vue':
promise = import(
/* webpackChunkName: "vue.js" */
'./chunks/vue'
);
break;
default:
promise = Promise.reject('Unknown chunk');
}
return promise.catch((error) => {
console.error(`Could not load chunk ${chunk}`, error);
});
};
}());
|