mirror of
https://github.com/vichan-devel/vichan.git
synced 2025-01-18 09:04:44 +01:00
8 lines
267 B
JavaScript
8 lines
267 B
JavaScript
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();
|
|
};
|