aboutsummaryrefslogtreecommitdiff
path: root/videosearch_n_play.html
diff options
context:
space:
mode:
Diffstat (limited to 'videosearch_n_play.html')
-rw-r--r--videosearch_n_play.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/videosearch_n_play.html b/videosearch_n_play.html
index 8a8f854..fb58843 100644
--- a/videosearch_n_play.html
+++ b/videosearch_n_play.html
@@ -31,9 +31,18 @@
}
- function newMusic(id)
+ var songFinished;
+ function newMusic(id, duration)
{
$('#ytplayer').attr('src', 'https://www.youtube.com/embed/'+id+'?autoplay=1&modestbranding=1');
+ songFinished = setTimer(nextSong, duration * 1000);
+ console.log("Setting timer for "+duration+" seconds");
+ }
+
+ function nextSong()
+ {
+ clearTimer(songFinished);
+ console.log("Bingo !");
}
function getAllMatchingIds(data)
@@ -60,6 +69,8 @@
html.push('</ul>');
document.getElementById('videoResultsDiv').innerHTML = html.join('');
}
+
+
</script>