1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-09-24 11:38:24 +02:00
vichan/playersettings.js

8 lines
267 B
JavaScript
Raw Normal View History

2013-11-09 10:11:22 +01:00
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();
};