add files

This commit is contained in:
ccd0 2013-11-09 01:11:22 -08:00
parent 705af14064
commit 674b2e8f1a
13 changed files with 1421 additions and 2 deletions

7
playersettings.js Normal file
View file

@ -0,0 +1,7 @@
window.onload = function() {
settingsPanel.style.cssFloat = "right";
document.body.insertBefore(settingsPanel, document.body.firstChild);
var video = document.getElementsByTagName("video")[0];
video.muted = setting("videomuted");
video.play();
};