Created
October 29, 2016 00:48
-
-
Save jameslkingsley/93863fe7c532dbc6488e4b42374355a4 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
$(document).ready(function(e) { | |
$("#video-next, #video-prev").click(function(event) { | |
var index = (function(i){return (i < 0) ? 6 : (i > 6) ? 0 : i})($("#video-player").data("index") + $(this).data("dir")); | |
$("#video-player").attr({'data-index': index, 'src': (["https://youtube.com/embed/XFTR70j_8u0","https://youtube.com/embed/Eb_wyy_PaR0","https://youtube.com/embed/1C_n9RryuV0","https://youtube.com/embed/IsXmPVvXIjA","https://youtube.com/embed/eAoVwCSo_Qo","https://youtube.com/embed/KzuMTaiAr_0","https://youtube.com/embed/BZgtJcgfU4k"])[index]}); | |
event.preventDefault(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment