prevent elastic scroll in simulator

This commit is contained in:
Peli de Halleux 2016-04-19 10:06:36 -07:00
parent 13bdcf762d
commit 94f18340ec
1 changed files with 14 additions and 4 deletions

View File

@ -5,10 +5,20 @@
<meta charset="utf-8">
<title>microbit simulator</title>
<style>
body {
background: transparent;
overflow: hidden;
}
html {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
height: 100%;
padding: 0;
overflow: auto;
margin: 0;
-webkit-overflow-scrolling: touch;
overflow-scrolling: touch;
}
</style>
<script src="/cdn/bluebird.min.js"></script>
<script src="/cdn/pxtsim.js"></script>