mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-08-28 22:10:31 -04:00
26 lines
523 B
HTML
26 lines
523 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="google" value="notranslate">
|
|
<title>Block Factory Preview</title>
|
|
<script src="../../blockly_compressed.js"></script>
|
|
<script src="../../msg/messages.js"></script>
|
|
<script src="preview.js"></script>
|
|
<style>
|
|
html, body {
|
|
background-color: #fff;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
.blocklySvg {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|