wyattjmiller.com/src/twitch-player.js

20 lines
460 B
JavaScript
Raw Normal View History

2018-05-18 06:38:59 -05:00
/*
Twitch player for my personal site
Created by Wyatt J. Miller, published by Entourage Solutions
Made possible by the folks at Twitch, thanks guys ;)
Licensed by the MIT
*/
new Twitch.Embed("twitch-embed", {
theme: "dark",
chat: "mobile",
2018-05-21 00:22:22 -05:00
width: "100%",
height: "100%",
2018-05-18 06:38:59 -05:00
channel: "wymillerlinux"
});
var follow = document.getElementById("twitch-follow");
follow.addEventListener('click', function(user){
//code goes here
}, false);