2022-02-05 17:45:49 +01:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2022-02-06 19:14:55 +01:00
|
|
|
<title>Overlay</title>
|
2022-02-05 17:45:49 +01:00
|
|
|
|
|
|
|
<!-- Load CSS for Chart.js -->
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.css" />
|
|
|
|
<!-- Load our styles -->
|
|
|
|
<link rel="stylesheet" href="styles.css"/>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<!-- Main body -->
|
|
|
|
<body>
|
2022-02-06 19:14:55 +01:00
|
|
|
<div class="main">
|
2022-02-05 17:45:49 +01:00
|
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
2022-02-06 19:14:55 +01:00
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
2022-02-05 17:45:49 +01:00
|
|
|
<!-- Load jQuery UI -->
|
2022-02-06 19:14:55 +01:00
|
|
|
<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.min.js"></script>
|
2022-02-05 17:45:49 +01:00
|
|
|
<!-- Load Chart.js -->
|
2022-02-06 19:14:55 +01:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js"></script>
|
2022-02-05 17:45:49 +01:00
|
|
|
<!-- Load Reconnecting socket -->
|
|
|
|
<script src="/common/reconnecting-websocket/reconnectingWS.min.js"></script>
|
|
|
|
<!-- Load Bot config file -->
|
|
|
|
<script src="/common/js/wsConfig.js"></script>
|
|
|
|
|
|
|
|
<!-- Load functions copied out of panel dir, since can't directly read panel dir (http auth problem) -->
|
|
|
|
<script src="/custom/js/socketWrapper.js"></script>
|
|
|
|
|
|
|
|
<!-- Load our script -->
|
|
|
|
<script src="index.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|