blob: a05f517f8e2563b9062664a21b9f7381d0445baf (
plain)
1
2
3
4
5
6
7
8
9
|
<script>
console.log("Injecting Familine header")
document.body.innerHTML = document.body.innerHTML + "<iframe style=\"position:fixed;left:0;right:0;top:0;border: none;width: 100%;height:32px;\" src=\"https://familine.minteck.org/statusbar.php\"></iframe>";
document.getElementsByTagName("html")[0].style.marginTop = "32px";
document.getElementsByTagName("html")[0].style.height = "calc(100vh - 32px)";
</script>
</body>
</html>
|