Created
June 4, 2018 13:53
-
-
Save RinorDreshaj/d463f9bb0b4c770f623a4a5b1223a038 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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