git checkout master
git pull
git checkout -b feature/my-work
# edit your files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For jsbin | |
// noprotect | |
/* Written by Kieran Jones on 07/02/2017 | |
Based on https://codepen.io/linrock/pen/Amdhr | |
Live demo here http://jsbin.com/zejihirewu/1/edit?js,output | |
MIT License | |
*/ | |
class CanvasComponent extends React.Component { | |
constructor(props, context) { | |
super(props, context); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var video = document.getElementsByTagName('video')[0]; | |
video.setAttribute('loop', 'true'); | |
video.play(); |