forked from Yerren/FreshWDL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFreshWDLmaster.html
More file actions
38 lines (33 loc) · 2.34 KB
/
Copy pathFreshWDLmaster.html
File metadata and controls
38 lines (33 loc) · 2.34 KB
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
<!DOCTYPE html>
<html lang="en">
<!-- Include initially needed CSS -->
<link rel="stylesheet" type="text/css" href="https://gitcdn.xyz/cdn/Yerren/FreshWDL/master/css/stylesheet01.css"> <!--Includes the project's css sheet -->
<!-- Loading Screen Setup -->
<div id="loadingScreen">
<div id="loadingText">
<p id="titleText">Fresh<b>WDL</b></p>
<p id="loadingMessage">Collecting Data.</p>
</div>
</div>
<!-- First script that must be loaded -->
<script type="text/javascript" src="https://gitcdn.xyz/cdn/Yerren/FreshWDL/master/js_bundles/Loading.js"></script>
<!-- Include remiaing Scripts -->
<script type="text/javascript" src="config.js"></script> <!--Includes the local script that sets customisable variables-->
<script src="https://code.createjs.com/easeljs-0.8.2.min.js"></script> <!--Includes the drawing part of CreateJS: EaselJS-->
<script src="https://code.createjs.com/tweenjs-0.6.2.min.js"></script> <!--Includes the animation part of CreateJS: TweenJS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/opentip/2.4.6/downloads/opentip-native.js"></script> <!--Includes the tooltip library: OpenTip-->
<script type="text/javascript" src="https://gitcdn.xyz/cdn/Yerren/FreshWDL/master/js_bundles/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.min.js"></script>
<script type="text/javascript" src="https://gitcdn.xyz/cdn/Yerren/FreshWDL/master/js_bundles/Globals.js"></script> <!--Includes the script that sets global variables-->
<script type="text/javascript" src="https://gitcdn.xyz/cdn/Yerren/FreshWDL/master/js_bundles/WidgetsHandlers.min.js"></script> <!--Includes most of the Scripting-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/opentip/2.4.6/css/opentip.css" rel="stylesheet" type="text/css" /> <!--Includes the tooltip's css sheet -->
<!-- Modal code must be outside of body so it can be referenced-->
<script src="https://gitcdn.xyz/cdn/Yerren/FreshWDL/master/UpperContent.js"></script>
<head>
<meta charset="utf-8" />
<title>FreshWDL</title>
</head>
<body onload='initAll();'> <!--Once the page is loaded, start the initialization functions -->
<script src="https://gitcdn.xyz/cdn/Yerren/FreshWDL/master/InnerContent.js"></script>
</body>
</html>