32 lines
899 B
HTML
32 lines
899 B
HTML
|
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>EmoteWall</title>
|
||
|
<!-- Load our styles -->
|
||
|
<style>body {margin:0;overflow:hidden;}</style>
|
||
|
</head>
|
||
|
|
||
|
<!-- Main body -->
|
||
|
<body>
|
||
|
<div class="main">
|
||
|
<canvas id="wall"></canvas>
|
||
|
|
||
|
</div>
|
||
|
<!-- jQuery -->
|
||
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||
|
<!-- Load jQuery UI -->
|
||
|
<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.min.js"></script>
|
||
|
<!-- 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>
|