Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blockly &lt;iframe&gt; Playground</title>
<style>
html, body {
border: 0;
margin: 0;
padding: 0;
font-family: sans-serif;
}
h1#title {
border: 0;
margin: 2px;
padding: 0;
width: %100;
}
#playground-iframe {
border: 0;
width: %100;
}
</style>
<script type="text/javascript">
var onWindowResize = function() {
var iframe = document.getElementById('playground-iframe');
var top = iframe.getBoundingClientRect().top;
iframe.height = window.innerHeight - top;
iframe.width = window.innerWidth;
};
window.addEventListener("resize", onWindowResize);
window.addEventListener("load", onWindowResize);
</script>
</head>
<body>
<h1 id="title">Outer Frame</h1>
<iframe id="playground-iframe" src="../playground.html">
</body>
</html>