20 lines
458 B
JavaScript
20 lines
458 B
JavaScript
|
/*
|
||
|
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);
|