This commit is contained in:
2022-02-19 00:48:41 +01:00
parent d6a846a5f0
commit a5c4be914b
3 changed files with 366 additions and 0 deletions

32
web/emotewall/index.html Normal file
View File

@@ -0,0 +1,32 @@
<!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>