update calc

This commit is contained in:
Boof 2023-03-15 10:47:53 +01:00 committed by GitHub
parent 08047e7130
commit 31ee4887bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@
</head>
<body id="bodyId">
<div id="iframeDiv" style="position:absolute; left: 0; right: 0; bottom: 0; top: 0px;">
<div id="iframeDiv" style="display: none; position:absolute; left: 0; right: 0; bottom: 0; top: 0px;">
<iframe sandbox="allow-scripts allow-popups" width="100%" height="100%" frameborder="0"
src="https://herremann.edu.eu.org"></iframe>
</div>

View File

@ -27,6 +27,7 @@ async function checkSecret() {
await delay(50)
if (sixPressed == true && ninePressed == true) {
document.getElementById("wrapper").style.display = "none";
document.getElementById("iframeDiv").style.display = "block";
}
}
}