2014-03-19 19:04:23 -04:00
|
|
|
/* This file is dedicated to the public domain; you may do as you wish with it. */
|
2013-11-10 04:56:45 -05:00
|
|
|
if (window.addEventListener) window.addEventListener("load", function(e) {
|
2013-11-10 07:57:45 -05:00
|
|
|
document.getElementById("playerheader").appendChild(settingsMenu);
|
|
|
|
|
2013-11-09 04:11:22 -05:00
|
|
|
var video = document.getElementsByTagName("video")[0];
|
2013-11-10 07:57:45 -05:00
|
|
|
|
|
|
|
var loopLinks = [document.getElementById("loop0"), document.getElementById("loop1")];
|
|
|
|
function setupLoopLink(i) {
|
|
|
|
loopLinks[i].addEventListener("click", function(e) {
|
2013-11-11 00:34:03 -05:00
|
|
|
if (!e.shiftKey && !e.ctrlKey && !e.altKey && !e.metaKey) {
|
|
|
|
video.loop = (i != 0);
|
|
|
|
if (i != 0 && video.currentTime >= video.duration) {
|
|
|
|
video.currentTime = 0;
|
|
|
|
}
|
|
|
|
loopLinks[i].style.fontWeight = "bold";
|
|
|
|
loopLinks[1-i].style.fontWeight = "inherit";
|
|
|
|
e.preventDefault();
|
2013-11-10 07:57:45 -05:00
|
|
|
}
|
|
|
|
}, false);
|
|
|
|
}
|
|
|
|
for (var i = 0; i < 2; i++) {
|
|
|
|
setupLoopLink(i);
|
|
|
|
}
|
|
|
|
|
2014-03-04 19:45:53 -05:00
|
|
|
video.muted = (setting("videovolume") == 0);
|
|
|
|
video.volume = setting("videovolume");
|
2013-11-09 04:11:22 -05:00
|
|
|
video.play();
|
2013-11-10 04:56:45 -05:00
|
|
|
}, false);
|