pxt-ev3/sim/public/simulator.html
Richard Knoll bef4ebac43
Updating npm dependencies and getting the build to work (#1001)
* Updating npm dependencies and getting the build to work

* update node in github actions to 14.x
2021-09-22 15:51:32 -07:00

33 lines
517 B
HTML

<!doctype html>
<html lang="en" data-manifest="" data-framework="typescript">
<head>
<meta charset="utf-8">
<title>EV3 Simulator</title>
<style>
html {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
height: 100%;
width:100%;
padding: 0;
overflow: hidden;
margin: 0;
}
.light * {
transition: none !important;
}
</style>
<script src="/cdn/pxtsim.js"></script>
<script src="/sim/common-sim.js"></script>
<script src="/sim/sim.js"></script>
</head>
<body>
</body>