Created
December 13, 2014 00:38
-
-
Save pedrombafonso/a224f234526c7f82051f to your computer and use it in GitHub Desktop.
LiveClicker Video - Random code helpers for liveclicker
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
// checks play time | |
var checkTimeInterval = 500; | |
setInterval(function detectVideoPlay() { | |
try { | |
var player = $('embed', $el)[0]; | |
if (player.getSettings().playTime > Number($el.data('duration'))) { | |
pause(element); | |
} | |
} catch(e) { } | |
}, checkTimeInterval); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment