link testing

This commit is contained in:
Brychan Dempsey 2021-06-08 21:54:36 +12:00
parent 227d7fd874
commit 02aa0891cb
2 changed files with 11 additions and 8 deletions

View File

@ -5,8 +5,6 @@
body {
margin: 0px;
background-color: #383c4a;
padding-top: 20px;
padding-right: 15px;
}
</style>
<script>
@ -75,19 +73,24 @@
return data.text();
})
.then(function (html) {
document.getElementById('renderspot').innerHTML = html;
document.getElementById('capsule').innerHTML = html;
});
}
});
</script>
<style>
.markdown {
overflow: auto !important;
#capsule {
padding-right: 15px;
padding-top: 20px;
}
</style>
</head>
<body margin="0">
<div id="renderspot" style="height: 100%; width: 100%" />
<div id="capsule" class="ui container">
<!-- style="height: 100%; width: 100%" -->
<div id="renderspot" />
</div>
</body>
</html>

View File

@ -24,7 +24,7 @@ See [EntityManager.java](/BrychanD/JaveECS/src/branch/master/javaecs/src/main/ja
``` java
protected EntityManager(){}
```
The default constructor initialises [unusedEntities](#unusedEntities) to a new queue containing [maxSize](#maxSize) (`1024`) unique integers.
The default constructor initialises [unusedEntities](#unusedentities) to a new queue containing [maxSize](#maxsize) (`1024`) unique integers.
<br>