wyattjmiller.com/src/twitch-player.js

20 lines
458 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",
width: "80%",
height: "50%",
channel: "wymillerlinux"
});
var follow = document.getElementById("twitch-follow");
follow.addEventListener('click', function(user){
//code goes here
}, false);