Skip to content

Instantly share code, notes, and snippets.

@RinorDreshaj
Created June 4, 2018 13:53
Show Gist options
  • Save RinorDreshaj/d463f9bb0b4c770f623a4a5b1223a038 to your computer and use it in GitHub Desktop.
Save RinorDreshaj/d463f9bb0b4c770f623a4a5b1223a038 to your computer and use it in GitHub Desktop.
function repeatTime(time, timeout) {
var k = document.querySelector('video')
setInterval(function() {
k.currentTime = time;
k.play();
}, timeout);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment