-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathscript.js
More file actions
29 lines (27 loc) · 865 Bytes
/
script.js
File metadata and controls
29 lines (27 loc) · 865 Bytes
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
(function() {
var order = [
"/external/jquery-2.0.3.js?1236911224000",
"/external/jquery-ui.js?1236911224000",
"/external/spin.min.js?1236911224000",
"/external/jquery.cookie.js?1236911224000",
"/external/chosen.jquery.js?1236911224000",
"/external/Chart.js?1236911224000",
"/external/jquery.mousewheel.js?1236911224000",
"/external/mwheelIntent.js?1236911224000",
"/external/md5.js?1236911224000",
"/external/canvasjs.js?1236911224000",
"/external/showdown.min.js?1596622399768",
"/external/jquery.ui.touch-punch.js?1574423440731",
"/external/gl-matrix.js?1236911224000",
"/scripts/main.js?1596631635853",
];
var loadIdx = 0;
function doLoad() {
if (loadIdx >= order.length) {
} else {
var path = order[loadIdx++];
DC_getScript(path, doLoad);
}
}
doLoad();
})();