summaryrefslogtreecommitdiff
path: root/twitch.html
blob: f5df236c30fa49671f9a30b2c1b60f1075f01f99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
    <head>
        <title>chat widget</title>
        <link rel="stylesheet" href="/style.css">
    </head>
    <body class="messages" id="messages">
        <noscript>
            JavaScript is required.
        </noscript>
    </body>

    <script src="/scripts/chat.js"></script>
    <script src="/scripts/badges.js"></script>
    <script>
        const badges = {};
        
        window.addEventListener("load", () => {
            connectToChat("wss://irc-ws.chat.twitch.tv", "justinfan12345", "65432", "forsen");
            getTwitchBadges("forsen", badges);
        });
    </script>
</html>