mirror of
https://github.com/Circlepuller/Tinyboard.git
synced 2025-02-23 09:32:52 +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();
|
||
|
};
|